export declare const SEED_ITEM: { name: string; title: string; list: { name: "fontSize" | "borderRadius" | "colorPrimary" | "colorSuccess" | "colorWarning" | "colorError" | "colorInfo" | "colorTextBase" | "colorBgBase" | "colorLink" | "sizeUnit" | "sizeStep" | "wireframe"; title: string; description: string; right: boolean; }[]; }[]; export declare const TOKEN_ITEMS: { name: string; title: string; source: { name: string; handle: "fontSize" | "borderRadius" | "colorPrimary" | "colorSuccess" | "colorWarning" | "colorError" | "colorInfo" | "colorTextBase" | "colorBgBase" | "colorLink" | "sizeUnit" | "sizeStep" | "wireframe"; }[]; left: boolean; list: { name: string; title: string; description: string; right: boolean; }[]; }[]; export declare const COMPONENT_ITEMS: { name: string; title: string; list: { name: string; title: string; description: string; left: boolean; right: boolean; }[]; }[]; export declare const PRIVATE_ITEMS: { name: string; title: string; components: string; list: { name: any; title: any; description: any; left: boolean; type: any; }[]; }[]; interface DataFlowSource { name: string; handle: string; } interface DataFlowItemList { name: string; title: string; description?: string; source?: DataFlowSource[]; left?: boolean; right?: boolean; } interface DataFlowItem { name: string; title: string; description?: string; source?: DataFlowSource[]; left?: boolean; right?: boolean; list: DataFlowItemList[]; } export interface DataFlow { title: string; name: string; width: number; child: DataFlowItem[]; type: string; } /** 数据流程 */ export declare const dataflow: DataFlow[]; export {};