import { type IconVersion } from '../../model/IconVersion'; import { type Picture } from '../../model/Picture'; import { type IconName } from '../Icon/IconProps'; export interface InfoCardProps { __html?: string; icon?: IconName; iconVersion?: IconVersion; image?: Picture; } export declare const InfoCard: import("@redneckz/uni-jsx").UNIComponent;