/** * Calendar module. * Reads events from macOS Calendar.app via osascript (AppleScript). */ import type { CalendarData } from './types.js'; export interface CalendarOptions { /** Number of days to look ahead (default: 1 = today only). */ lookaheadDays?: number; /** Only include events from these calendars (by name). Empty = all. */ calendars?: string[]; /** Whether to include all-day events (default: true). */ includeAllDay?: boolean; } /** * Fetch upcoming calendar events from Calendar.app. */ export declare function fetchCalendar(options?: CalendarOptions): Promise; //# sourceMappingURL=calendar.d.ts.map