import { type GoogleConfig } from "../lib/google-client.js"; import { type CalendarEventItem } from "./calendar-list.js"; export interface UpdateArgs { eventId: string; summary?: string; start?: string; end?: string; location?: string; description?: string; attendees?: string[]; allDay?: boolean; } /** PATCH, not PUT: only the fields the caller named are sent, so an update * never blanks a field it was not asked to change. */ export declare function runCalendarUpdate(config: GoogleConfig, args: UpdateArgs): Promise; //# sourceMappingURL=calendar-update.d.ts.map