import { FSJetpack } from 'fs-jetpack/types'; import { NeedsNothing } from "../../types"; import { Provider } from '../../'; export declare type Needs = NeedsNothing; export declare type Params = { /** * Where should the directory be created? When `null` a dynamic tmp directory will be gotten from the * operating system. * * @default null */ path?: string | null; /** * Should the directory be deleted after the test completes? * * @default false */ cleanup?: boolean; }; export declare type Contributes = { fs: FSJetpack; }; export declare const paramDefaults: Required; /** * Create a Dir provider. */ export declare const create: (params?: Params | undefined) => Provider; //# sourceMappingURL=Dir.d.ts.map