import type { DefineComponent } from "vue"; /** Icon component props */ export interface IconProps { type?: string | any[]; size?: string | number; color?: string; spin?: boolean; strokeWidth?: string | number; } /** Icon Vue 3 component */ declare const Icon: DefineComponent; export default Icon;