import type { GraphClientConfig } from "../lib/graph-client.js"; import { type EventInput } from "./calendar-create.js"; export interface CalendarUpdateArgs extends EventInput { eventId: string; } export interface CalendarUpdateResult { eventId: string; updated: true; } export declare function runCalendarUpdate(config: GraphClientConfig, args: CalendarUpdateArgs): Promise; //# sourceMappingURL=calendar-update.d.ts.map