import * as React from "react"; import { CalendarTileProperties } from "react-calendar"; export interface CalendarProps { title?: string; calendarId?: string; defaultValue: Date; onChange(date: Date): void; checkIfTileIsDisabled?(tile: CalendarTileProperties): boolean; } declare const CalendarComponent: ({ title, defaultValue, onChange, checkIfTileIsDisabled, calendarId, }: CalendarProps) => React.ReactElement; export default CalendarComponent;