/** * Canonicalise text before synthesis. * * - Applies Unicode NFKC, so full width latin becomes half width and half * width katakana becomes full width. * - Strips control characters. * - Collapses every whitespace run into a single space and trims the result. */ export declare function normalizeText(text: string): string; //# sourceMappingURL=normalize.d.ts.map