import React from "react"; import { RowData, TableRow } from "./types"; interface BodyRowProps { row: TableRow; onClick: (e: React.MouseEvent) => void; } export default function BodyRow({ row, onClick, }: BodyRowProps): JSX.Element; export {};