//#region src/remove-file.d.ts
/**
 * Remove the given content to the given file path
 *
 * @param filePath - The file path to remove to
 */
declare const removeFileSync: (filePath: string) => void;
/**
 * Remove the given content to the given file path
 *
 * @param filePath - The file path to read to
 */
declare const removeFile: (filePath: string) => Promise<void>;
//#endregion
export { removeFile, removeFileSync };
//# sourceMappingURL=remove-file.d.cts.map