import React from 'react'; interface Props { hover: boolean; emptyText: string; onRow: (row: any, index: number) => void; onCell: (cell: any, index: number, colunm: number) => void; data: Array; selected?: number; } declare const defaultProps: { className: string; }; type NativeAttrs = Omit, keyof Props>; export type TableBodyProps = Props & typeof defaultProps & NativeAttrs; export type cellActions = { remove: () => void; }; export type cellData = { row: number; column: number; value: any; }; declare const _default: React.ComponentType & Omit>; export default _default;