import { type Locale } from "date-fns"; export interface DatePickerDropdownItem { id: string; label: string; value: string; } export declare const useMonthsOptionItems: ({ locale }: { locale?: Locale; }) => { id: string; label: string; }[]; export declare const useYearsOptionItems: ({ locale }: { locale?: Locale; }) => { id: string; label: string; }[];