import * as React from 'react'; /** * Exposes the `elementsRef` a calendar grid container passes to its `` * so that the items of that list can read the column count for keyboard navigation. * Base UI's `CompositeListContext` no longer carries `elementsRef` since it moved to an * atomic item registry, so the ref is shared through this context instead. */ export declare const CalendarGridCellsRefsContext: React.Context>; export declare function useCalendarGridCellsRefsContext(): React.RefObject<(HTMLDivElement | null)[]>;