import { PureComponent } from 'react'; import type { LocaleType } from './types'; declare type MonthsProps = { locale: LocaleType; selected?: Date | null; onChange: (nextValue: Date | null) => void; onScroll: (nextValue: Date) => void; calendarHeight: number; offset: number; space: number; }; declare class Months extends PureComponent { static defaultProps: { selected: null; }; handleChange: (deltaY: number) => void; isSelected: (date: Date) => boolean; getSelection: (selected: Date | null | undefined) => {}[] | { top: number; height: number; }[]; render(): JSX.Element; } export default Months;