import React, { Component } from 'react';
import PropTypes from 'prop-types';
export default class Help extends Component {
    static propTypes: {
        /** Set the height of the icon, ex. '16px' */
        height: PropTypes.Requireable<string>;
    };
    static defaultProps: {
        height: string;
        predefinedClassName: string;
    };
    render(): React.JSX.Element;
}
