import { AnyDateValue, DayPositionedEventData, ScheduleEventData } from '../../../types'; interface GetDayPositionedEventsInput { /** Date at which events are positioned, used to check if events are all-day */ date: AnyDateValue; /** List of all events that belong to the given date, extra events must be filtered out before passing to the function */ events: ScheduleEventData[]; /** Start time of the day view, used to calculate event positions */ startTime?: string; /** End time of the day view, used to calculate event positions */ endTime?: string; /** Number of minutes per time slot, used to align the canvas to whole slots */ intervalMinutes?: number; } export declare function getDayPositionedEvents({ events, startTime, endTime, intervalMinutes, date, }: GetDayPositionedEventsInput): DayPositionedEventData[]; export {};