import type { EventAction, AgentDispatch } from "./schedule-event.js"; export interface ScheduleUpdateParams { accountId: string; eventId: string; name?: string; description?: string; startDate?: string; endDate?: string; location?: string; eventStatus?: string; recurrence?: string; timezone?: string; skipNext?: boolean; note?: string; action?: EventAction | null; agentDispatch?: AgentDispatch | null; } export declare function scheduleUpdate(params: ScheduleUpdateParams): Promise; //# sourceMappingURL=schedule-update.d.ts.map