/**
 * Phonemize text using the eSpeak-NG phonemizer
 * @param {string} text The text to phonemize
 * @param {"a"|"b"} language The language to use
 * @param {boolean} norm Whether to normalize the text
 * @returns {Promise<string>} The phonemized text
 */
export function phonemize(text: string, language?: "a" | "b", norm?: boolean): Promise<string>;
//# sourceMappingURL=phonemize.d.ts.map