import { HTMLAttributes, ReactNode, PureComponent } from 'react';
import PropTypes from 'prop-types';
import { CombinePropsAndAttributes } from '../../helpers';
interface ISelfProps {
    children: ReactNode;
}
export declare type ITableHeadProps = CombinePropsAndAttributes<ISelfProps, HTMLAttributes<HTMLTableSectionElement>>;
export declare class TableHead extends PureComponent<ITableHeadProps> {
    static propTypes: {
        children: PropTypes.Validator<PropTypes.ReactNodeLike>;
    };
    render(): JSX.Element;
}
export {};
//# sourceMappingURL=TableHead.d.ts.map