export interface LocaleAdapter { readonly locales: readonly string[]; getLocale(): string; setLocale(locale: string): void | Promise; onChange(callback: (locale: string) => void): () => void; }