/// <reference types="react" />
export interface IconProps {
    children: string;
    width?: number;
    height?: number;
    color?: string;
    className?: string;
}
declare function Icon({ color, children, width, height, className }: IconProps): JSX.Element;
declare namespace Icon {
    var defaultProps: {
        color: string;
        width: number;
        height: number;
        className: string;
    };
}
export default Icon;
