export declare class CardImage { /** * If image is not an icon this is used as the alternate text */ altText: string; /** * If image is an icon this is used for the icon color */ iconColor: string; /** * If image is an icon and their is not a src prop provided this will be used to set the icon */ iconName: string; /** * if image is an icon then this will be used to set icon size. Please see lu-icon for details on the different sizes available */ iconSize: string; /** * If set to true this component will attempt to display as an icon */ isIcon: boolean; /** * src for image or icon */ src: string; render(): any; }