import React, { FC } from 'react';
import type { MRT_Row, MRT_TableInstance } from '..';
interface Props {
    numRows: number;
    row: MRT_Row;
    rowIndex: number;
    table: MRT_TableInstance;
    virtualRow?: any;
}
export declare const MRT_TableBodyRow: FC<Props>;
export declare const Memo_MRT_TableBodyRow: React.NamedExoticComponent<Props>;
export {};
