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