import { ScheduleEventData } from '../../types'; interface GetDayPositionInput { /** Event data to calculate position for */ event: ScheduleEventData; /** Start time boundary for the day in HH:mm:ss format, `00:00:00` by default */ startTime?: string; /** End time boundary for the day in HH:mm:ss format, `23:59:59` by default */ endTime?: string; /** Number of minutes per time slot, `60` by default. Used to align the canvas to whole slots when `endTime` does not divide evenly. */ intervalMinutes?: number; } /** Calculates day position within given start and end time boundaries. Returns top and height in percentages. */ export declare function getDayPosition({ event, startTime, endTime, intervalMinutes, }: GetDayPositionInput): { top: number; height: number; }; export {};