/** * Attempts to remove a file. * * Errors: * - `removal-failed/does-not-exist` * - `removal-failed/not-file` * - `removal-failed/other` * * Where possible, use the following functions to be explicit about the * base directory you are intending: * - `libraryDirectory()`, * - `homeDirectory()`, * - `currentDirectory()` * * If, however, the filename starts with `~/` or `./` the appropriate base * will be deduced as well. */ export declare function removeFile(filename: string): void; //# sourceMappingURL=removeFile.d.ts.map