import React from "react"; import { type VibeComponentProps } from "../../../types"; import { type TableCellProps } from "../TableCell/TableCell"; export interface TableRowProps extends VibeComponentProps { /** * If true, applies a highlighted style to the row. */ highlighted?: boolean; /** * The child components inside the table row, typically `` elements. */ children?: React.ReactElement | React.ReactElement[]; /** * Custom styles applied to the table row. */ style?: React.CSSProperties; } declare const TableRow: React.ForwardRefExoticComponent>; export default TableRow;