import { FC, HTMLAttributes, PropsWithChildren } from 'react'; export interface DataGridRowProps extends HTMLAttributes { /** * Zero-based row index for all descendant cells. * Provided to descendants via context. */ row: number; } /** * DataGridRow groups a set of grid cells under a shared row index */ export declare const DataGridRow: FC>;