import { Moment } from 'moment';
import { IYearProps } from '../components/year/Year';
export declare function isMonthSelected(month: Moment, startDate: Moment, endDate: Moment): boolean;
export declare function isMonthHovered(month: Moment, startDate: Moment, endDate: Moment, hoveredDate: Moment | Moment[]): boolean;
export declare function isMonthDisabled(month: Moment, props: IYearProps): boolean;
export declare function isSameMonth(month: Moment, b: Moment): boolean;
