import { Event } from '@hebcal/core/dist/esm/event'; import { CalOptions } from '@hebcal/core/dist/esm/CalOptions'; export type FullCalendarEvent = { title: string; start: string; allDay: boolean; className: string; hebrew?: string; url?: string; description?: string; }; /** * Converts a Hebcal event to a FullCalendar.io object */ export declare function eventToFullCalendar(ev: Event, tzid: string, options: CalOptions): FullCalendarEvent;