import type { LabeledMonthPickerProps } from "./LabeledMonthPicker.types"; declare const useLabeledMonthPicker: (props: LabeledMonthPickerProps) => { data: { parsedValue: Date | null; parsedMinMonth: Date | null; parsedMaxMonth: Date | null; isOutOfRange: boolean; hasInvalidValue: boolean; }; fns: { handleMonthChange: (nextDate: Date | null) => void; }; }; export default useLabeledMonthPicker;