import React from 'react'; import PropTypes from 'prop-types'; import { ComponentProps } from '../utils/types'; interface TreeGridBodyPropsBase { /** * Must be `TreeGrid.Row`. */ children?: React.ReactNode; /** * A React ref which is set to the DOM element when the component mounts and null when it * unmounts. */ elementRef?: React.Ref; } type TreeGridBodyProps = ComponentProps; declare function Body({ children, elementRef, ...otherProps }: TreeGridBodyProps): React.JSX.Element; declare namespace Body { var propTypes: { children: PropTypes.Requireable; elementRef: PropTypes.Requireable; }; var splunkUiType: string; } export default Body;