export declare const FlowSchema: { type: string; title: string; collectionName: string; properties: { _id: { type: string; }; id: { type: string; required: boolean; }; pid: { type: string; required: boolean; }; private: { type: string; required: boolean; }; main: { type: string; required: boolean; }; type: { type: string; required: boolean; }; env: { type: string; required: boolean; }; ns: { type: string; required: boolean; }; name: { type: string; required: boolean; }; title: { type: string; required: boolean; }; description: { type: string; }; provider: { type: string[]; }; providers: { type: string; }; keywords: { type: string; }; nodeDefinitions: { type: string; }; ports: { type: string; properties: { input: { type: string; }; output: { type: string; }; }; }; nodes: { type: string; title: string; required: boolean; items: { type: string; title: string; properties: { id: { type: string; required: boolean; }; pid: { type: string; required: boolean; }; ns: { type: string; required: boolean; }; name: { type: string; required: boolean; }; version: { type: string; required: boolean; }; context: { type: string; required: boolean; }; }; }; }; links: { type: string; title: string; required: boolean; items: { type: string; title: string; properties: { id: { type: string; required: boolean; }; source: { type: string; required: boolean; properties: { id: { type: string; required: boolean; }; port: { type: string; required: boolean; }; index: { type: string[]; required: boolean; }; }; }; target: { type: string; required: boolean; properties: { id: { type: string; required: boolean; }; port: { type: string; required: boolean; }; index: { type: string[]; required: boolean; }; }; }; settings: { persist: { type: string; required: boolean; }; cyclic: { type: string; required: boolean; }; }; }; }; }; }; additionalProperties: boolean; };