import { IResponseState } from "../types"; export interface ICreateFile extends IResponseState { data: { fileFullName: string; fileName: string; timestamp: string; path: string; size: number; }; } export type ICreateFileError = {} & IResponseState; export declare namespace File { const create: (folderPath: string, fileName: string, payload: any) => Promise; const read: (filePath: string, converterFn?: ((data: any) => any) | undefined) => Promise; const remove: (filePath: string) => Promise; const write: (filePath: string, data: any) => Promise; } //# sourceMappingURL=File.d.ts.map