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