import React from 'react'; import { TableAbstractColumn, TableDataItemBase } from "./table-types"; interface Props { width: number; columns: Array>; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableHeadProps = Props & NativeAttrs; declare const TableHead: { (props: TableHeadProps): JSX.Element; defaultProps: { className: string; }; displayName: string; }; export default TableHead;