import * as React from 'react'; import { TemporalSupportedObject } from "../../models/index.mjs"; export interface CalendarGridDayRowContext { /** * The start date and time of the row */ start: TemporalSupportedObject; /** * The end date and time of the row */ end: TemporalSupportedObject; /** * The index of this row within its row type. * Always 0 for views with a single day row (week/day view). * In month view, this is the week index (0–5). */ rowIndex: number; } export declare const CalendarGridDayRowContext: React.Context; export declare function useCalendarGridDayRowContext(): CalendarGridDayRowContext;