/**
 * Remove the given content to the given file path
 *
 * @param filePath - The file path to remove to
 */
export declare const removeFileSync: (filePath: string) => void;
/**
 * Remove the given content to the given file path
 *
 * @param filePath - The file path to read to
 */
export declare const removeFile: (filePath: string) => Promise<void>;
