import { Moment } from 'moment';
import { IMonthProps } from '../components/month/Month';
export declare function isWeekEnd(day: Moment): boolean;
export declare function isDaySelected(day: Moment, startDate: Moment, endDate: Moment): boolean;
export declare function isDayHovered(day: Moment, startDate: Moment, endDate: Moment, hoveredDate: Moment | Moment[]): boolean;
export declare function isDayDisabled(day: Moment, props: IMonthProps): boolean;
export declare function isSameDay(day: Moment, b: Moment): boolean;
