import { ActorRef, SnapshotFrom, StateMachine } from 'xstate'; import { editor } from './actor.editor'; import { layouter } from './actor.layouter'; import { Context, EmittedEvents, Events } from './actor.types'; export interface AdhocEditorLogic extends StateMachine { } export declare const adhocEditorLogic: AdhocEditorLogic; export type AdhocEditorSnapshot = SnapshotFrom; export interface AdhocEditorActorRef extends ActorRef { }