import { type RunMode } from '../core/config.js'; export type RunCommandOptions = { config?: string; mode: string; ci?: boolean; reportDir?: string; workers?: string | number | boolean; }; export declare function parseRunMode(value: string): RunMode; export declare function runCommand(options: RunCommandOptions): Promise;