declare const defaultMap: Record; /** * Replace the entire default translation map. * Consumers can call this to provide their own fallback translations (e.g. Chinese). */ export declare function setDefaultI18nMap(map: Record): void; export declare function useSafeI18n(): { t: (key: string) => string; }; export {};