interface AppCommandOptions { /** The framework command to run. */ command: 'dev' | 'build'; /** Arguments to pass to the framework command. */ args: string[]; /** When true, auto-detects app from dependencies. Do not parse app name from args. */ autoDetect?: boolean; } export declare function runAppCommand({ command, args, autoDetect, }: AppCommandOptions): Promise; export {};