export default SidebarSectionTitle;
/** A title for the section within the sidebar */
declare class SidebarSectionTitle extends React.PureComponent<any, any, any> {
    static displayName: string;
    static propTypes: {
        /** Applied as data-hook HTML attribute that can be used in the tests */
        dataHook: PropTypes.Requireable<string>;
        /** Usually plain text, but could be any renderable node */
        children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
    };
    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