/** * Diagram JSON / props dispatcher. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; /** JSON factory dispatcher */ export declare function createDiagramFromProps(type: string, props: Record, app: App): Group | null;