import type { CalendarEvent } from "../types/events"; export interface ExportOptions { title?: string; description?: string; location?: string; } export declare function exportToICS(events: CalendarEvent[], options?: ExportOptions): string; export declare function exportToJSON(events: CalendarEvent[]): string; export declare function importFromJSON(json: string): CalendarEvent[];