import type { L10nConfig } from '../types/hooks'; export type UseLanguagePickerResult = { currentLocale: L10nConfig['locales'][number] | undefined; locales: L10nConfig['locales']; getLocaleUrl: (value: string) => string; /** * @deprecated Use `getLocaleUrl` to build the URL for the target locale, then pass it to ``. */ setLocale: (value: string) => void; }; export declare function useLanguagePicker(): UseLanguagePickerResult;