import '@oicl/openbridge-webcomponents/dist/components/event-item/event-item.js'; import type { EventItemType } from '@oicl/openbridge-webcomponents/dist/components/event-item/event-item.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; title?: string; description?: string; startTime?: string; endTime?: string; eventItemType?: EventItemType; hasArrow?: boolean; hasTime?: boolean; hasEndTime?: boolean; aggregatedCount?: number; colorCoded?: boolean; disabled?: boolean; } export interface Events { onEventClick?: (event: CustomEvent<{ title: string; startTime: string; endTime: string; }>) => void; } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcEventItem: import("svelte").Component<$$ComponentProps, { EventItemType: typeof EventItemType; }, "">; type ObcEventItem = ReturnType; export default ObcEventItem;