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