import React from 'react'; import PropTypes from 'prop-types'; import { ComponentProps } from '../utils/types'; interface TreeGridHeadPropsBase { /** * Must be `TreeGrid.HeadCell`. */ 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 TreeGridHeadProps = ComponentProps; declare function Head({ children, elementRef, ...otherProps }: TreeGridHeadProps): React.JSX.Element; declare namespace Head { var propTypes: { children: PropTypes.Requireable; elementRef: PropTypes.Requireable; }; var splunkUiType: string; } export default Head;