import type { Translations } from '../../types';
interface LoadedTranslationsState {
    translations: Translations;
    locale: string;
}
export declare const useTranslations: ({ locale, allowedLocales, }: {
    locale: string;
    allowedLocales: string[] | undefined;
}) => LoadedTranslationsState;
export {};
