///
import { ColumnType } from "./Table";
type Props = {
data: Record | string;
columns: ColumnType[];
onRowClick?: (data: Record) => void;
hasArrow?: boolean;
rowHeight: number;
isActive?: boolean;
};
declare function TableRow({ data, columns, onRowClick, hasArrow, rowHeight, isActive, }: Props): JSX.Element;
export default TableRow;