import { UseDateProps } from './use-date.type'; declare const useDate: (props: UseDateProps) => { current: Date; currentYear: number; currentMonth: number; func: { handleNextYear: () => void; handleNextMonth: () => void; handlePrevYear: () => void; handlePrevMonth: () => void; getDays: () => Date[]; isToday: (date: Date) => boolean; isDisabled: (date: Date) => boolean; isActive: (date: Date) => boolean; isInRange: (date: Date) => false | "end" | "start" | "start-end" | "in"; isCurrentMonth: (date: Date) => boolean; handleDayClick: (date: Date, noClose?: boolean) => void; getDayStr: (date: Date) => number; getWeekStr: (date: Date) => number; getTimeStr: () => string; getDateWithTime: (date: Date) => Date; }; }; export default useDate; //# sourceMappingURL=use-date.d.ts.map