import { RectNode, RectNodeModel } from '@logicflow/core'; import { NodeTextTheme } from '@logicflow/core/types/constant/DefaultTheme'; declare class AddFlowNodeModel extends RectNodeModel { __flowChildren: any; __ACChildren: any; updateChild(node: any): void; private FLOWTYPE; private addConditionItem; setAttributes(): void; initNodeData(data: any): void; getTextStyle(): NodeTextTheme; getNodeStyle(): { [x: string]: any; width?: number | undefined; height?: number | undefined; radius?: number | undefined; fill?: string | undefined; stroke?: string | undefined; strokeWidth?: number | undefined; }; } declare class AddFlowNode extends RectNode { } declare const _default: { type: string; view: typeof AddFlowNode; model: typeof AddFlowNodeModel; }; export default _default;