export default Title;
declare class Title extends React.Component<any, any, any> {
    static propTypes: {
        currentMenu: PropTypes.Requireable<string>;
        onChangeMenu: PropTypes.Requireable<(...args: any[]) => any>;
        current: PropTypes.Requireable<string>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    state: {
        visible: boolean;
    };
    componentDidMount(): void;
    handlers: {
        goGithub: () => void;
        goDocs: () => void;
        showHelp: () => void;
    };
    render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
