export declare const getState: (path: string) => Promise; export declare const exitDir: (path: string) => Promise; export declare const mkdir: (path: string) => Promise; export declare const rmdir: (path: string) => Promise; export declare const mkFile: (path: string, content: string) => Promise; export declare const readFile: (path: string) => Promise; export declare const copy: (from: string, to: string) => Promise; export declare function generatePath(flPath: string): Promise; declare const _default: { generatePath: typeof generatePath; getState: (path: string) => Promise; exitDir: (path: string) => Promise; mkdir: (path: string) => Promise; rmdir: (path: string) => Promise; mkFile: (path: string, content: string) => Promise; readFile: (path: string) => Promise; copy: (from: string, to: string) => Promise; }; export default _default;