export interface VitestExecutorOptions {
  configFile?: string;
  reportsDirectory?: string;
  testFiles?: string[];
  watch?: boolean;
  mode?: string;
  runMode?: 'test' | 'benchmark';
}
