import type { FC } from 'react'; type MonthsViewProps = { date: Date; value?: string | Date | null; year: number; minDate?: Date | null; maxDate?: Date | null; locale?: string; selectMonth: (month: number) => () => void; dataTestId?: string; }; export declare const MonthsView: FC; export {};