import { type PropType, type StyleValue } from 'vue'; export interface IconProps { rootStyle?: StyleValue; rootClass?: string; name?: string; family?: string; size?: string; color?: string; } export declare const iconProps: { rootStyle: PropType; rootClass: StringConstructor; name: { type: StringConstructor; default: string; }; family: { type: StringConstructor; default: string; }; size: StringConstructor; color: StringConstructor; };