import React from "react";
export interface IconProps {
    icon: string;
    size?: number | string;
    color?: string;
    className?: string;
    style?: React.CSSProperties;
    onClick?: () => void;
}
export declare const Icon: React.FC<IconProps>;
//# sourceMappingURL=index.d.ts.map