import { default as React } from 'react'; interface TheadContextValue { columnCount: number; columnWidths: number[]; } export declare const useTheadContext: () => TheadContextValue; interface IProps extends React.HTMLAttributes { headerHeight?: number; } declare const Thead: ({ children, style, headerHeight, ...props }: IProps) => React.JSX.Element; export default Thead; //# sourceMappingURL=thead.d.ts.map