import * as React from 'react'; export declare type IconProps = { /** Name of requested Icon */ name?: string; /** Size of Icon (px, rem, em, %, etc...) */ size?: string; /** CSS class name */ className?: string; /** Sets color for all (up to 4) zones */ color?: string; /** Sets color for Base1 and Base2 zones */ baseColor?: string; /** Sets color for Base1 only */ baseColor1?: string; /** Sets color for Base2 only */ baseColor2?: string; /** Sets color for Details1 and Details2 zones */ detailsColor?: string; /** Sets color for Details1 only */ detailsColor1?: string; /** Sets color for Details2 only */ detailsColor2?: string; theme?: any; }; export default function iconFactory(BaseIconComponent: React.FC, displayName?: string): React.FunctionComponent>;