/** * State machine node primitive. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; export declare function createStateNode(app: App, label: string, type: 'initial' | 'final' | 'normal' | string): Group;