/// import { Theme } from '../../../styles'; import { MonthPickerProps, ReferenceMonth } from '../../MonthPicker/MonthPicker'; export interface GenericMonthRangeCalendarProps extends MonthPickerProps { isInTheRange(month: ReferenceMonth): boolean; isInTheHoverRange(month: ReferenceMonth, hoverMonth: ReferenceMonth): boolean; } export declare function GenericMonthRangeCalendar(props: GenericMonthRangeCalendarProps): JSX.Element; export declare const hoverStyle: (theme: Theme) => { background: string; };