export interface EventDetail { eventId: string; name: string; description?: string; startDate: string; endDate?: string; location?: string; eventStatus: string; recurrence?: string; timezone?: string; nextRun?: string; lastTriggered?: string; skipNext?: boolean; notes?: string; /** Task 1378 — agent-bearing dispatch, present only on an agentDispatch event. */ agentChannel?: string; agentDestination?: string; agentPrompt?: string; createdAt: string; updatedAt: string; relationships: Array<{ type: string; targetLabel: string; targetName?: string; targetId: string; }>; } export declare function scheduleGet(eventId: string, accountId: string): Promise; //# sourceMappingURL=schedule-get.d.ts.map