/** * Flowchart node primitives. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; export declare function createFlowchartNode(app: App, label: string, type: 'start' | 'end' | 'decision' | 'process' | string): Group;