import * as React from 'react'; export interface CalendarGridDayCellContext { /** * The index of the cell in the row. */ index: number; /** * Whether this cell currently owns focus within the grid. * When `true`, interactive children (e.g. events) should use `tabIndex={0}` * so they are reachable via Tab; when `false`, they should use `tabIndex={-1}`. */ hasFocus: boolean; } export declare const CalendarGridDayCellContext: React.Context; export declare function useCalendarGridDayCellContext(): CalendarGridDayCellContext;