import { PickerOptions, ResolvedLocaleOptions } from '../../types'; type UseResolvedLocaleOptionsHook = (options: PickerOptions) => ResolvedLocaleOptions; /** * A hook that returns the locale and locale options to be used by the calendar. * * The order of precedence of how the options are resolved should be: * * - Prop-values passed to the hook/component * - Properties available from the system/user settings resource* (in the future) * - Values coming from Intl.DateTimeFormat().resolvedOptions() * - Some hardcoded defaults * * @param options * @returns */ export declare const useResolvedLocaleOptions: UseResolvedLocaleOptionsHook; export {};