import { EventObject, Subscribable } from './types'; export interface Actor extends Subscribable { id: string; send: (event: TEvent) => any; stop?: () => any | undefined; toJSON: () => { id: string; }; } export declare function isActor(item: any): item is Actor;