/**
 * Auto-generated typed translation resources — system-i18n.
 * Regenerate with: pnpm i18n:types
 *
 * Augments react-i18next so `t('key')` is type-checked against en.json.
 * Unknown keys are TypeScript errors.
 */
import type en from './en.json'

type EnTranslation = typeof en

declare module 'react-i18next' {
  interface CustomTypeOptions {
    defaultNS: 'translation'
    resources: {
      translation: EnTranslation
    }
  }
}
