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