import { LocalFile } from "./LocalFile.js"; import { Stream } from "node:stream"; export default class TempFolder implements Disposable { readonly folder: string; constructor(suffix?: string, root?: string); read(): AsyncGenerator; get(name: string, mimeType?: string, keep?: boolean, useSafeFileName?: boolean): LocalFile; copy(fileName: string, src: LocalFile, contentType?: string): Promise; createFrom(fileName: string, content: Buffer | Stream, contentType: string): Promise; [Symbol.dispose](): void; } //# sourceMappingURL=TempFolder.d.ts.map