import { type GoogleConfig } from "../lib/google-client.js"; import { type CalendarEventItem } from "./calendar-list.js"; export type AttendeeResponse = "accepted" | "declined" | "tentative"; /** * Set this account's own attendee responseStatus. * * Google has no dedicated respond endpoint. The attendee array is read, the * entry whose email matches the connected account is replaced, and the array * is patched back. Every other attendee's status is preserved verbatim, so * responding never silently rewrites someone else's answer. */ export declare function runCalendarRespond(config: GoogleConfig, args: { eventId: string; response: AttendeeResponse; }): Promise; //# sourceMappingURL=calendar-respond.d.ts.map