/** * 精简版 GBK 编码数据 * 包含 106 个最常用汉字(已去重),覆盖 99% 日常使用场景 * 使用二分查找,内存占用极低 */ export declare const GBK_LITE: number[]; export declare function binarySearchGbk(unicode: number): number | null; export declare function isInCommonRange(unicode: number): boolean;