/// /** @public */ export type GCalendarList = gapi.client.calendar.CalendarList; /** @public */ export type GCalendar = gapi.client.calendar.CalendarListEntry; /** @public */ export type EventAttendee = gapi.client.calendar.EventAttendee; /** @public */ export type GCalendarEvent = gapi.client.calendar.Event & Pick & Pick & { calendarId?: string; }; /** @public */ export declare enum ResponseStatus { needsAction = "needsAction", accepted = "accepted", declined = "declined", maybe = "tentative" }