export declare class TempDirectory {
    location: string;
    id: string;
    constructor(location: string, id: string);
    static create(): Promise<TempDirectory>;
    clear(): Promise<this>;
    [Symbol.asyncDispose](): Promise<void>;
}
//# sourceMappingURL=TempDirectory.class.d.ts.map