import type { TOptions } from 'i18next'; import type defaultLangTranslations from '../i18n/en-US.js'; export type Locale = { code: string; name: string; }; export type TKeys = keyof typeof defaultLangTranslations; export type TFunction = (value?: TKeys | (string & { _?: never; }), options?: string | TOptions) => string; export type { TOptions }; //# sourceMappingURL=i18n.d.ts.map