interface Options {
    key?: string;
    file?: string[];
    yes?: boolean;
    wait?: boolean;
    recursive: boolean;
}
export declare function executeExperiments(options: Options): Promise<void>;
export {};
