import React from "react"; import { VibeComponent, VibeComponentProps } from "../../../types"; import { ITableCellProps } from "../TableCell/TableCell"; export interface ITableRowProps extends VibeComponentProps { /** * Does the row have a highlighted style */ highlighted?: boolean; children?: React.ReactElement | React.ReactElement[]; style?: React.CSSProperties; } declare const TableRow: VibeComponent; export default TableRow;