interface OverrideOptions { /** The file or glob pattern to override from the app template (e.g., "tsconfig.json" or "ui/*.tsx"). */ pattern: string; /** Optional app name. If not provided, auto-detects from dependencies. */ appName?: string; } /** * Copies files from the installed app template to the project root. * Supports glob patterns for copying multiple files at once. * This provides IDE support and allows customization without fully ejecting the app. */ export declare function runOverrideCommand(options: OverrideOptions): Promise; export {};