import { AnyDateValue, DateStringValue, ScheduleEventData } from '../../types'; export type GroupedEvents = Record; interface GetMobileMonthViewEventsInput { date: AnyDateValue; events: ScheduleEventData[] | undefined; } export declare function getMobileMonthViewEvents({ date, events }: GetMobileMonthViewEventsInput): GroupedEvents; export {};