import { type FC } from "react"; import type { TableRowProps } from "../TableRow"; /** * Properties for the `DataGridRow` component. */ export type DataGridRowProps = Omit & { /** * The zero-based index of the row in the grid. */ rowIndex: number; /** * The data that was passed as itemData in the grid. */ data: unknown; }; declare const DataGridRow: FC; export default DataGridRow;