import { TableRowProps } from './table-row.types'; /** * The component renders a `` element and it should contain `TableCell` components. * The styles depend on the parent context, which can be `TableHead`, `TableBody`, or `TableFoot`. * The component can be disabled or selected. * * ### Usage * * ```tsx * import { Table, TableHeader, TableBody, TableFoot, TableCell } from '@bloomreach/react-banana-ui'; * * export default function MyCustomTable() { * return ( * * * * * * * * * * *
* ); * } * ``` */ declare const TableRow: import('react').ForwardRefExoticComponent>; export default TableRow;