import { ClickParam } from 'antd/lib/menu';
import * as React from 'react';
interface IProps {
    onChangeEditor: (param: ClickParam) => void;
    currentEditor: any;
}
declare class Title extends React.Component<IProps> {
    state: {
        visible: boolean;
    };
    componentDidMount(): void;
    handlers: {
        goGithub: () => void;
        goDocs: () => void;
        showHelp: () => void;
    };
    render(): JSX.Element;
}
export default Title;
