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