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