/// <reference types="react" />
import { Row } from 'react-table';
import { Action, TableRowOptions } from '@/core/interfaces';
interface BodyMapRowProps {
    rows: Row<any>[];
    prepareRow: (row: Row<any>) => void;
    actions?: Action<any>[];
    rowOptions: TableRowOptions;
}
export default function BodyMapRow(props: BodyMapRowProps): JSX.Element;
export {};
