import type translations from './locales/en-US.json';
export type TranslationKey = keyof typeof translations;
export type TranslationItem = string;
export type Translations = Record<TranslationKey, TranslationItem>;
export type TranslationObject = {
    key: TranslationKey;
    values: Record<string, string>;
};
export type Translatable = TranslationKey | TranslationObject;
export type CustomTranslations = {
    [locale: string]: {
        [translationKey: string]: string;
    };
};
