export declare const ensurePath: (path: string[], clear?: boolean) => Promise; export declare const requireModuleFromPath: (path: string[]) => any; export declare const readFileFromPath: (path: string[]) => Promise; export declare const writeFileToPath: (path: string[], content: string) => Promise; export declare const readFilesAndConcat: (files: string[]) => Promise;