interface Options { key?: string; file?: string[]; yes?: boolean; wait?: boolean; recursive: boolean; allowParallel?: boolean; retries?: number; retryInterval?: number; } export declare function executeExperiments(options: Options): Promise; export {};