/** * E2E Test Runner - Run Command * * Execute E2E tests with filtering and reporting */ import type { CLIArgs, TestSuiteResult } from '../types'; export interface RunCommandResult { exitCode: number; result?: TestSuiteResult; } /** * Execute the run command */ export declare function runCommand(args: CLIArgs): Promise; /** * Merge loaded config with CLI options (re-export) */ export { mergeConfigWithOptions } from '../core'; //# sourceMappingURL=run.command.d.ts.map