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