import type { GraphClientConfig } from "../lib/graph-client.js"; export type RespondAction = "accept" | "decline" | "tentative"; export interface CalendarRespondArgs { eventId: string; action: RespondAction; comment?: string; sendResponse?: boolean; } export interface CalendarRespondResult { eventId: string; action: RespondAction; } /** Respond to a meeting invite: accept, decline, or tentatively accept. */ export declare function runCalendarRespond(config: GraphClientConfig, args: CalendarRespondArgs): Promise; //# sourceMappingURL=calendar-respond.d.ts.map