/**
 * Removes accents from a string.
 *
 * @param str - The string to remove accents from
 * @returns The string without accents
 */
export declare const removeAccents: (str: string) => any;
