export declare function rmFile(filename: string): Promise; export declare function addToFile(filename: string, line: string): Promise; export declare function writeFile(filename: string, contents: string): Promise; export declare function copyDirectoryContents(dir: string, target: string): Promise; export declare function findUp(name: string, directory?: string): string | undefined; /** * Docker-safe home directory */ export declare function homeDir(): string; export declare function loadLines(filename: string): Promise; export declare function writeLines(filename: string, lines: string[]): Promise; /** * Update a spaceless ini file in place */ export declare function updateIniKey(lines: string[], key: string, value: string): void;