export declare const LOCALE: { readonly ZH: "zh_CN"; readonly EN: "en_US"; }; export declare const CATEGORY: { readonly GENERAL: "General"; readonly NAVIGATION: "Navigation"; readonly LAYOUT: "Layout"; readonly DATA_ENTRY: "Data Entry"; readonly DATA_DISPLAY: "Data Display"; readonly FEEDBACK: "Feedback"; readonly OTHER: "Other"; }; export declare const GROUP: { readonly BASIC: "Basic"; }; /** Maps legacy Chinese category/group labels to English keys. */ export declare const CATEGORY_FROM_ZH: Record; export type I18nText = { type: 'i18n'; zh_CN: string; en_US: string; }; export declare function i18n(zh: string, en: string): I18nText; export declare function fieldTitle(zhLabel: string, enLabel: string, zhTip?: string, enTip?: string): { label: I18nText; tip?: I18nText; };