export interface ScheduleListParams { accountId: string; status?: string; from?: string; to?: string; upcoming?: boolean; limit?: number; } export interface EventSummary { eventId: string; name: string; startDate: string; endDate?: string; eventStatus: string; recurrence?: string; nextRun?: string; location?: string; } export declare function scheduleList(params: ScheduleListParams): Promise; //# sourceMappingURL=schedule-list.d.ts.map