1/** A basic function that copies a single file to another file location. */
2export declare function copyFilePathToPathAsync(src: string, dest: string): Promise<void>;
3/** Remove a single file (not directory). Returns `true` if a file was actually deleted. */
4export declare function removeFile(filePath: string): boolean;
5