declare const localize: { 'zh-CN': { ok: string; cancel: string; confirm: string; }; en: { ok: string; cancel: string; confirm: string; }; }; export declare const setLocale: (value: string) => void; export default function (id: keyof typeof localize['zh-CN']): string; export {};