export interface RunOptions { commandLine: string; target?: 'web' | 'ios' | 'android'; verbose?: boolean; ssr?: boolean; cwd: string; } /** Run command: Execute a build command and automatically upload the resulting assets. */ export declare function runCommand(options: RunOptions): Promise;