import React from 'react'; import { Locale } from 'date-fns'; import { range } from '../../../utils/array'; import { DateRange } from '../../../utils/types/Date'; import { DateTimeCellPropRange } from '../DateTimeCell/DateTimeCell'; import { HandleSelectDate } from './types'; export declare const getDaysOfMonth: (props: { date: Date; locale: Locale; handleDayClick?: HandleSelectDate | undefined; value?: Date | DateRange | undefined; events?: Date[] | undefined; minDate?: Date | undefined; maxDate?: Date | undefined; }) => { disabled?: boolean; onClick?: React.MouseEventHandler; label: string; selected?: boolean; range?: DateTimeCellPropRange; event?: boolean; current?: boolean; }[];