import * as React from 'react'; import { BaseUIComponentProps } from '@mui/x-scheduler-internals/base-ui-copy'; /** * A unified row container that provides its index to child cells * (TitleRow, EventRow) for keyboard navigation. * The `index` is passed as a prop (e.g. from the virtualizer's renderRow). */ export declare const TimelineGridBodyRow: React.ForwardRefExoticComponent & React.RefAttributes>; export declare namespace TimelineGridBodyRow { interface State {} interface Props extends BaseUIComponentProps<'div', State> { /** * The logical row index within the grid. * Provided by the virtualizer's `renderRow` callback. */ index: number; } }