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