/** * Normalizes a string to replace non-alphanumeric and diacritical marks with * plain equivalents. * Based on https://stackoverflow.com/a/37511463/772859 */ export declare function normalizeString(input: string, spaceReplacer?: string): string;