import { ExtractPropTypes, PropType } from 'vue'; export type IconProps = Partial>; export declare const ICON_PROPS: { color: { type: StringConstructor; default: string; }; size: { type: PropType; default: string; }; class: { type: StringConstructor; default: string; }; className: { type: StringConstructor; default: string; }; spin: { type: BooleanConstructor; default: boolean; }; rotate: { type: NumberConstructor; default: number; }; onClick: { type: PropType<(event: any) => void>; }; };