import { default as React } from 'react'; interface TbodyContextValue { contentWidth: number; rowHeight: number; columnWidths: number[]; columnCount: number; } export declare const useTbodyContext: () => TbodyContextValue; interface IProps extends React.HTMLAttributes { offsetHeight?: number; } declare const Tbody: ({ children, style, ...props }: IProps) => React.JSX.Element; export default Tbody; //# sourceMappingURL=tbody.d.ts.map