import type { FC } from 'react'; type YearsViewProps = { date: Date; value?: string | Date | null; years: number[]; minDate?: Date | null; maxDate?: Date | null; selectYear: (month: number) => () => void; dataTestId?: string; }; export declare const YearsView: FC; export {};