export default SidebarSectionTitle; /** A title for the section within the sidebar */ declare class SidebarSectionTitle extends React.PureComponent { static displayName: string; static propTypes: { /** Applied as data-hook HTML attribute that can be used in the tests */ dataHook: PropTypes.Requireable; /** Usually plain text, but could be any renderable node */ children: PropTypes.Validator>; }; constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SidebarSectionTitle.d.ts.map