import { type TranslationKey } from "./zh.js"; export type Locale = "zh" | "en"; declare function getLocale(): Locale; export declare function setLocale(locale: Locale): void; export declare function t(key: TranslationKey, vars?: Record): string; export { getLocale, type TranslationKey };