import type { SlotHeightConfig } from '../types/index.js'; import { type ComputedRef } from 'vue'; export type CalendarSlotHeightContext = { hourHeight: ComputedRef; hourHeightPx: ComputedRef; totalGridHeight: ComputedRef; totalGridHeightPx: ComputedRef; pixelsPerMinute: ComputedRef; getEventTop: (startTime: string) => string; getEventHeight: (startTime: string, endTime: string) => string; getTimeIndicatorTop: (currentTime: Date) => string; }; export declare function provideCalendarSlotHeight(config?: SlotHeightConfig): CalendarSlotHeightContext; export declare function useCalendarSlotHeight(): CalendarSlotHeightContext;