import { MonthProps, DayType, DateString } from '../types'; export declare function getMonthDays(month: number, year: number, firstDayMonday: boolean, disableRange: boolean, disabledDays: { [key: string]: any; }, disableOffsetDays: boolean, startDate?: DateString, endDate?: DateString, minDate?: DateString, maxDate?: DateString, showSixWeeks?: boolean): DayType[]; export declare function areEqual(prevProps: MonthProps, nextProps: MonthProps): boolean;