import React from 'react'; import PropTypes from 'prop-types'; import { JssInjectedProps } from 'rsg-components/Styled'; declare const localPropTypes: { classes: PropTypes.Validator<{ [x: string]: string; }>; children: PropTypes.Requireable; toolbar: PropTypes.Requireable; id: PropTypes.Validator; href: PropTypes.Requireable; depth: PropTypes.Validator; deprecated: PropTypes.Requireable; parentName: PropTypes.Requireable; parentHref: PropTypes.Requireable; }; type SectionHeadingRendererProps = PropTypes.InferProps & JssInjectedProps; declare const _default: React.ComponentType>; export default _default;