import type { L10nConfig } from '../types/hooks';
export declare function useLanguagePicker(): {
    currentLocale: L10nConfig['locales'][number] | undefined;
    locales: L10nConfig['locales'];
    setLocale: (value: string) => void;
};
