import I18n from '@ringcentral-integration/i18n'; import { getTranslateFn } from '@ringcentral-integration/utils'; import type enUS from './en-US'; // @ts-expect-error import loadLocale from './loadLocale'; const i18n = new I18n(loadLocale); export const t = getTranslateFn(i18n); export type I18nKey = keyof typeof enUS; export default i18n;