export interface AppShellMetaField { name: string; type: string; required?: boolean; description?: string; default?: any; enum?: string[]; } export interface AppShellMetaSection { name: string; description?: string; fields: AppShellMetaField[]; } export declare const APP_SHELL_META: AppShellMetaSection[];