export declare const UNIT: { zh_cn: string[]; en_us: string[]; }; interface GetUnitOptions { maxDigits?: number; greaterText?: string; } export declare function getUnit(localeName: keyof typeof UNIT, digit: number, options?: GetUnitOptions): string; export {};