import fs from "node:fs"; export default function fsStorage(): { name: string; deleteFile: (fp: string) => Promise; downloadFile: (fp: string, options?: Record) => Promise; uploadFile: (fp: string, data: any, opt?: {}) => Promise; fileExists: (filepath: any, opt?: any) => Promise; stat: (filepath: string) => Promise; moveFile: (fp: string, destFilepath: string) => Promise; getFileSize: (filepath: any) => Promise; getMDate: (filepath: any) => Promise; readdir: (filepath: any) => Promise; }; //# sourceMappingURL=fs.d.ts.map