import React from 'react';
interface IconProps {
    type: string;
    className?: string;
    style?: React.CSSProperties;
    onClick?: any;
}
export default function (props: IconProps): JSX.Element;
export {};
