export interface LocalesContextValue { locales: Locale[]; defaultLocale: string; } export interface Locale { name: string; translations: Translations; } export declare type Translations = { [key: string]: Translations | string; }; export interface NextLocaleAppProps { nextLocales: Locale[]; } export declare type TranslateValues = { [key: string]: unknown; }; export declare type LocaleConfig = Partial<{ dir: string; }>;