/** * @author WMXPY * @namespace FileSystem_Util * @description IO */ export declare const listFileFromDirectory: (basePath: string, pathRoute: string[]) => Promise; export declare const putFile: (basePath: string, pathRoute: string[], content: string) => Promise; export declare const putBuffer: (basePath: string, pathRoute: string[], content: Buffer) => Promise; export declare const readFile: (basePath: string, pathRoute: string[]) => Promise; export declare const readBuffer: (basePath: string, pathRoute: string[]) => Promise; export declare const deleteFile: (basePath: string, pathRoute: string[]) => Promise;