import React from "react"; import type { CalendarEvent, EventMarkerStyle } from "../types/events"; import type { CalendarTheme } from "../types/theme"; export interface EventMarkersProps { events: CalendarEvent[]; style?: EventMarkerStyle; theme?: CalendarTheme; } export declare function EventMarkers({ events, style, theme }: EventMarkersProps): React.JSX.Element;