UNPKG

reablocks

Version:
18 lines (17 loc) 471 B
import { FC } from 'react'; import { CalendarTheme } from '../CalendarTheme'; 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>;