import { Experiment } from './types'; export type Datatype = 'json' | 'yaml'; export interface ExperimentFromFile { experiment: Experiment; datatype: Datatype; } export declare function resolveExperimentFiles(files: string[], recursive: boolean): Promise; export declare function writeFile(file: string, content: unknown, datatype: Datatype): Promise; export declare function loadExperiment(file: string): Promise;