/// <reference types="react" />
interface Props {
    type: string;
    style?: object;
    className?: string;
    onClick?: Function;
}
export default function Icon(props: Props): JSX.Element;
export {};
