export default IconFx;
declare function IconFx(props: any): JSX.Element;
declare namespace IconFx {
    namespace propTypes {
        const onClick: PropTypes.Requireable<(...args: any[]) => any>;
        const width: PropTypes.Requireable<string | number>;
        const height: PropTypes.Requireable<string | number>;
        const className: PropTypes.Requireable<string>;
    }
}
import PropTypes from "prop-types";
