export type FilePath = string; export type FileFormat = 'json' | 'sql'; export declare const mkParentDirs: (path: string) => void; export declare const fileExists: (path: string) => boolean; export declare const fileList: (path: string) => Promise; export declare const fileReadJson: (path: string) => Promise; export declare const fileRead: (path: string) => Promise; export declare const fileWriteJson: (path: string, json: T) => Promise; export declare const fileWrite: (path: string, content: string) => Promise; export declare const userHome: () => string; export declare const pathResolve: (path: string) => string; export declare const __filename: string; export declare const __dirname: string; //# sourceMappingURL=file.d.ts.map