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