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