declare module "../types.js" { interface FlowNodeRegistry { branch: { kind: "branch"; condition: string; then: FlowNode[]; else?: FlowNode[]; }; } } export {};