import { default as React } from 'react'; interface IProps extends React.HTMLAttributes { colIndex?: number; width?: number; colSpan?: number; } declare const Th: ({ children, style, colIndex, width, colSpan, ...props }: IProps) => React.JSX.Element; export default Th; //# sourceMappingURL=th.d.ts.map