/** * Diagram builder — stateMachine. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; import type { NodeOptions } from '../../types'; import type { StateMachineData } from '../types'; /** Create state machine diagram */ export declare function createStateMachine(app: App, data: StateMachineData, options?: NodeOptions): Group;