export declare const calendarMonthDayDefaultProps: Readonly<{ isSelected: boolean; }>; export declare type CalendarMonthDayProps = { date: Date; displayDate: Date; onSelect(date: Date): void; } & typeof calendarMonthDayDefaultProps;