import { CalendarEvent } from '../types'; type Props = { topEventsToShow?: number; showAllDayEvents?: boolean; onEventClick?: (event: CalendarEvent) => void; onMoreClick?: () => void; onAllDayClick?: () => void; config: any; }; declare const CalendarTiles: ({ topEventsToShow, showAllDayEvents, onEventClick, onMoreClick, onAllDayClick, config, }: Props) => import("react/jsx-runtime").JSX.Element; export default CalendarTiles;