import { FC } from 'react'; interface ICalendarContent { date: Date; mode: string; handleChange: (d: Date) => void; changeMode: (mode: string) => void; yearsScope: number[]; localeLabels?: { months?: string[]; weekdaysShort?: string[]; firstDayOfWeek?: number; }; } export declare const CalendarContent: FC; export {};