declare function BodyTable(props: any, { table }: { table: any; }): JSX.Element; declare namespace BodyTable { namespace propTypes { const columns: PropTypes.Validator; const tableClassName: PropTypes.Validator; const handleBodyScroll: PropTypes.Validator<(...args: any[]) => any>; const getRowKey: PropTypes.Validator<(...args: any[]) => any>; const expander: PropTypes.Validator; const tableLayout: PropTypes.Requireable; } namespace contextTypes { const table: PropTypes.Requireable; } } export default BodyTable; import PropTypes from "prop-types";