import type { Snippet } from 'svelte'; import type { CalendarEvent, EventItemContext } from './calendar.types.js'; interface CalendarAgendaViewInternalProps { eventItem?: Snippet<[EventItemContext]>; onEventClick?: (event: CalendarEvent) => void; class?: string; } declare const CalendarAgendaView: import("svelte").Component; type CalendarAgendaView = ReturnType; export default CalendarAgendaView;