import { ReactNode, ReactNodeArray, FC, HTMLAttributes } from 'react';
interface IProps extends HTMLAttributes {
children: ReactNode | ReactNodeArray;
className?: string;
onClick?(e: any): void;
onDoubleClick?(e: any): void;
}
declare const TableRow: FC;
export default TableRow;