/** * [EN] Alternative word with normalizations in some combinations. * * [UZ] Ba'zi harf kombinatsiyalari normalizatsiya qilingan muqobil so'z. * */ interface Alternative { alternative: string; always?: never; } /** * [EN] The syllabification is always true regardless of its variantions. * * [UZ] Bo'g'inga ajratish so'z variatsiyasidan qat'iy nazar ko'rsatilgandek bo'ladi. * */ interface Always { alternative?: never; always: string[]; } declare type Exception = Alternative | Always; export declare const EXCEPTIONAL_WORDS: Record; export {};