export declare const NodeSchema: { type: string; title: string; properties: { title: { type: string; required: boolean; }; description: { type: string; required: boolean; }; _id: { type: string; }; id: { type: string; }; pid: { type: string; required: boolean; }; private: { type: string; required: boolean; }; name: { type: string; required: boolean; }; ns: { type: string; required: boolean; }; state: { type: string; }; on: { type: string; }; phrases: { type: string; }; env: { type: string; enum: string[]; }; async: { type: string; required: boolean; }; dependencies: { type: string; required: boolean; }; provider: { required: boolean; type: string; }; providers: { required: boolean; type: string; }; expose: { type: string; required: boolean; }; fn: { type: string[]; required: boolean; }; ports: { type: string; required: boolean; properties: { input: { type: string; }; output: { type: string; }; event: { type: string; }; }; }; type: { enum: string[]; required: boolean; }; }; additionalProperties: boolean; };