/**
 * Checks if a character is a vowel
 * @param char The character to check
 * @returns True if the character is a vowel, false otherwise
 */
export declare const isVowel: (char: string) => boolean;
