import type { ICalendarEvent } from '@rocket.chat/core-typings'; export type CalendarEventUpdateProps = { eventId: ICalendarEvent['_id']; startTime: string; endTime?: string; subject: string; description: string; meetingUrl?: string; reminderMinutesBeforeStart?: number; busy?: boolean; }; export declare const isCalendarEventUpdateProps: import("ajv").ValidateFunction; //# sourceMappingURL=CalendarEventUpdateProps.d.ts.map