export interface FlowInfo { id: string; name: string; nodes: NodeInfo[]; } export interface NodeInfo { id: string; name: string; }