import { LocaleKey } from './index.types'; export type Localized = Partial<{ readonly locale: Locale; }>; /** */ export type Locale = LocaleKey | `en-${'UK' | 'US'}`;