import type { BoxElementProps } from "@twilio-paste/box"; import * as React from "react"; import type { TrProps } from "./table/Tr"; export interface DataGridRowProps extends TrProps { children: NonNullable; /** * Visally displays a row highlight indicating selection and sets `aria-selected` * * @type {boolean} * @memberof DataGridRowProps */ selected?: boolean; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default 'DATA_GRID_ROW' * @type {BoxElementProps['element']} * @memberof DataGridRowProps */ element?: BoxElementProps["element"]; } /** * DataGrid cell component. Every visible box in a data grid is powered by the cell. * * @param {boolean} selected - highlights the row to mark it as selected * @param {string} element - customization element */ export declare const DataGridRow: React.ForwardRefExoticComponent>; //# sourceMappingURL=DataGridRow.d.ts.map