import React, { FC } from 'react';
import "../../index.css";
import "./icons.scss";
interface MyState {
    className?: string;
    type: string;
    title?: string;
    style?: React.CSSProperties;
}
export declare const Icon: FC<MyState>;
export default Icon;
