interface EjectOptions { /** Optional app name to eject. If not provided, auto-detects from dependencies. */ appName?: string; /** Target directory to eject into. Defaults to project root. */ targetDirectory?: string; } /** * Ejects a renoun app from node_modules into the project root. * This copies the app's files into your project and removes the dependency. */ export declare function runEjectCommand(options?: EjectOptions): Promise; export {};