import { AnyDateValue, DateStringValue, ScheduleEventData } from '../../types'; export type AgendaGroupedEvents = Record; interface GetAgendaViewEventsInput { rangeStart: AnyDateValue; rangeEnd: AnyDateValue; events: ScheduleEventData[] | undefined; } export declare function getAgendaViewEvents({ rangeStart, rangeEnd, events }: GetAgendaViewEventsInput): AgendaGroupedEvents; export {};