/** * Calendar event GraphQL mutations */ /** * Mutation for creating a new calendar event * * Variables: * - input.calendarEvent: The complete calendar event object to create * - input.groupId: The group ID * - input.limitResponsePayload: Flag to limit response size (optional) */ export declare const CREATE_CALENDAR_EVENT_MUTATION: import("graphql").DocumentNode; /** * Mutation for updating a calendar event * * Variables: * - input.update: The calendar event update data (full event object) * - input.eventId: The ID of the event to update * - input.groupId: The group ID * - input.isInviteeStatusUpdate: Whether this is an invitee status update * - input.inviteeEmail: The invitee's email address * - input.skipReorder: Whether to skip reordering * - input.limitResponsePayload: Flag to limit response size (optional) */ export declare const UPDATE_CALENDAR_EVENT_MUTATION: import("graphql").DocumentNode; //# sourceMappingURL=mutations.d.ts.map