import { NodeCategory, NodeTypeDef } from '../nodeTypes'; import { FLOW_START_TYPE } from './start'; export declare const BUILT_IN_NODE_DEFS: NodeTypeDef[]; export declare const BUILT_IN_NODE_TYPES: ReadonlySet; export { FLOW_START_TYPE }; /** 内置分类面板结构(可被 configureRuleNodes 扩展/裁剪) */ export declare const builtinCategories: () => NodeCategory[]; /** 新建流程默认模板:起点 → 终点 */ export declare const getDefaultFlowTemplate: () => { nodes: any[]; edges: any[]; };