/** * Normalizes text so that it's suitable to comparisons, sorting, search, etc. by: * - turning into lowercase * - removing diacritics * - removing extra whitespace */ declare function normalizeText(string: string): string; export { normalizeText as default };