import type { StoredFile } from "../../files/types.js"; /** * Stores files into a single filesystem folder. * Expects: basePath points to a writable directory location. */ export declare class FileFolder { readonly path: string; constructor(basePath: string); saveBuffer(options: { name: string; mimeType: string; data: Buffer; }): Promise; saveFromPath(options: { name: string; mimeType: string; path: string; }): Promise; private ensureDir; } //# sourceMappingURL=fileFolder.d.ts.map