import { CancelAction, ActionFunction, LogAction } from 'xstate'; import { Context, Events, EmittedEvents } from './machine.setup'; import { HotkeyActorLogic } from './hotkeyActor'; import { OverlaysActorLogic } from '../../overlays/overlaysActor'; import { SearchActorLogic } from '../../search/searchActor'; import { MediaPrintActorLogic } from './mediaPrintActor'; import { EditorActorLogic } from '../../editor'; /** * State when the diagram is being prepared for printing. * Adjusts the viewport to fit the entire diagram for optimal printing. * Restores the previous viewport upon exiting the state. */ export declare const printing: { id: string; entry: CancelAction[]; exit: ActionFunction[]; on: { 'media.print.off': { target: string; }; '*': { actions: LogAction[]; }; }; };