/** * @jsxRuntime classic * @jsx jsx */ import { type CSSProperties, type ReactNode } from 'react'; export type ITableRowProps = { isHighlighted?: boolean; children?: ReactNode; style?: CSSProperties; className?: string; testId?: string; }; export declare const TableBodyRow: React.ForwardRefExoticComponent & React.RefAttributes>;