export declare const CONFIG_SCHEMA: { $schema: string; type: string; description: string; properties: { app: { $id: string; type: string; required: string[]; additionalProperties: boolean; properties: { name: { type: string; description: string; }; nodeId: { type: string; description: string; }; path: { type: string; description: string; }; enableShutdownOnUncaughtException: { type: string; description: string; }; system: { type: string; properties: { distributed: { type: string; description: string; }; }; }; }; }; modules: { $id: string; type: string; description: string; properties: { appdir: { type: string; }; cachePath: { type: string; }; paths: { type: string; items: { type: string; }; }; subModulPattern: { description: string; type: string; items: { type: string; }; }; include: { type: string; items: { type: string; }; }; exclude: { type: string; items: { type: string; }; }; packageKeys: { type: string; items: { type: string; }; }; disabled: { type: string; items: { type: string; }; }; libs: { type: string; items: { type: string; properties: { topic: { type: string; }; refs: { type: string; items: { type: string; }; }; }; }; }; }; }; storage: { $id: string; type: string; properties: { _defaultFramework: { type: string; default: string; }; _autoload: { type: string; default: boolean; description: string; }; }; patternProperties: { '^[^_]\\w*': { $id: string; type: string; title: string; properties: { name: { type: string; }; type: { type: string; }; database: { type: string; }; synchronize: { type: string; }; connection: { type: string; properties: { read: { type: string; }; write: { type: string; }; }; }; }; }; }; }; }; };