export declare const checkOrCreateFile: (pathName: any, fileName: any) => Promise<any>;
export declare const createFile: (pathName: any, fileName: any) => Promise<any>;
export declare const readFile: (filePath: any, encoding?: string) => Promise<any>;
export declare const checkPath: (pathName: string) => Promise<any>;
export declare const createPath: (pathName: any) => Promise<any>;
export declare const checkOrCreatePath: (pathName: string) => Promise<any>;
export declare const fileStats: (filePath: string) => Promise<any>;
export declare const removePath: (pathName: string) => Promise<void>;
export declare const writeFile: (filePath: string, content: Buffer) => Promise<any>;
