import { RunnerDirInterface } from "./RunnerDirInterface"; export declare function deleteAllFakedDirs(): void; export declare class FakeRunnerDir implements RunnerDirInterface { readonly dirPath: string; cleanedUp: boolean; static create(tmpDirPath?: string | undefined): FakeRunnerDir; protected constructor(dirPath: string, cleanedUp: boolean); delete(): void; get existingDirPath(): string | undefined; } //# sourceMappingURL=FakeRunnerDir.d.ts.map