import * as React from 'react'; import { BaseUIComponentProps } from "../../base-ui-copy/utils/types.js"; import { TemporalSupportedObject } from "../../models/index.js"; export declare const CalendarGridDayRow: React.ForwardRefExoticComponent & React.RefAttributes>; export declare namespace CalendarGridDayRow { interface State {} interface Props extends BaseUIComponentProps<'div', State> { /** * The data and time at which the row starts. */ start: TemporalSupportedObject; /** * The data and time at which the row ends. */ end: TemporalSupportedObject; /** * The index of this row within its row type. * Used to uniquely identify the row for keyboard navigation when there are * multiple rows of the same type (e.g., multiple weeks in the month view). * @default 0 */ rowIndex?: number; } }