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