UNPKG

reablocks

Version:
19 lines (17 loc) 472 B
import { CalendarTheme } from '../CalendarTheme'; import { FC } from 'react'; export interface CalendarMonthsProps { /** * The currently displayed month of the calendar. */ value: number; /** * A callback function that is called when a day is selected. */ onChange: (month: number) => void; /** * Theme for the CalendarMonths. */ theme?: CalendarTheme; } export declare const CalendarMonths: FC<CalendarMonthsProps>;