import { UseMonthProps } from './use-month.type'; declare const useMonth: (props: UseMonthProps) => { current: Date; currentYear: string; func: { handleNext: () => void; handlePrev: () => void; getMonths: () => Date[]; isNow: (date: Date) => boolean; isDisabled: (date: Date) => boolean; isActive: (date: Date) => boolean; isInRange: (date: Date) => false | "end" | "start" | "start-end" | "in"; handleMonthClick: (date: Date, onClose?: boolean) => void; getMonthStr: (date: Date) => number; }; }; export default useMonth; //# sourceMappingURL=use-month.d.ts.map