declare type EXCEPTIONAL_COMBINATION = 'dr' | 'gr' | 'gl' | 'mm'; /** Unifies exceptional combination with its corresponding special character */ export declare function normalizeExceptionalCombination(word: string, combination: EXCEPTIONAL_COMBINATION): string; /** Replaces special characters with their corresponding exceptional combination. */ export declare function splitReplacements(word: string): string; export {};