export interface Calendar { width?: number; height?: number; color?: 'primary' | 'secondary' | 'custom' | string } declare const Calendar: React.ComponentType; export default Calendar;