import { Context, Events, AdhocViewServiceActor, EmittedEvents } from './actor.types'; import { ActionFunction } from 'xstate'; export declare const editor: { initial: string; states: { idle: { id: string; on: { 'select.open': { target: "#selecting"; }; 'toggle.rule': { target: "#layouting"; actions: ActionFunction; }; 'delete.rule': { target: "#layouting"; actions: ActionFunction; }; }; }; selecting: { id: string; on: { 'toggle.element': { actions: ActionFunction[]; }; 'select.close': { target: "#idle"; }; }; }; layouting: { id: string; always: { target: "#idle"; actions: ActionFunction; }; }; }; };