import type { FlowChart } from '../../types/parser'; type LayerNode = { id: string; children: Array; parents: Array; layer: number; type?: string; propsId?: string; ignore?: boolean; }; export declare function flowChartDrawer(flowChart: FlowChart): LayerNode[][]; export {};