import { ActorRef, SnapshotFrom, StateMachine } from 'xstate'; import { EditorActorContext, EditorActorEmitedEvent, EditorActorEvent, EditorActorInput, EditorActorStateTag } from './types'; export interface EditorActorLogic extends StateMachine { } export declare const editorActorLogic: EditorActorLogic; export type EditorActorSnapshot = SnapshotFrom; export interface EditorActorRef extends ActorRef { }