/** Local-first RFC 5545 (.ics) connector — materializes a plan to disk with ZERO network egress. */ import type { CalendarConnector } from "./connector.js"; export interface IcsConnectorOptions { /** Absolute path the .ics file is written to. */ outPath: string; /** Optional local free/busy JSON file (BusyInterval[]). */ freeBusyPath?: string; /** Injectable clock for DTSTAMP determinism (default: new Date().toISOString()). */ nowIso?: string; } export declare function createIcsConnector(opts: IcsConnectorOptions): CalendarConnector; //# sourceMappingURL=ics-connector.d.ts.map