export declare const touchDirectory: (path: string) => void; export declare const writeFile: (path: string, data: string | ArrayBuffer) => void; export declare const removeFile: (path: string) => void; export declare const clearDirectory: (path: string) => boolean; export declare const checkFileExist: (path: string) => Promise;