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