export declare const StageSchema: { type: string; title: string; properties: { id: { type: string; required: boolean; }; env: { type: string; required: boolean; }; title: { type: string; required: boolean; }; description: { type: string; required: boolean; }; actors: { type: string; title: string; required: boolean; items: { type: string; title: string; properties: { id: { 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; }; target: { type: string; required: boolean; }; out: { type: string; required: boolean; }; in: { type: string; required: boolean; }; settings: { persist: { type: string; required: boolean; }; cyclic: { type: string; required: boolean; }; }; }; }; }; }; };