export type ITranslations<TLocales extends string> = {
    key: string;
} & {
    [locale in TLocales]: string;
};
