| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | import { type PropType, type ExtractPropTypes } from 'vue';import { type BadgeProps } from '../badge';declare const iconProps: {    dot: BooleanConstructor;    tag: {        type: PropType<keyof HTMLElementTagNameMap>;        default: keyof HTMLElementTagNameMap;    };    name: StringConstructor;    size: (NumberConstructor | StringConstructor)[];    badge: (NumberConstructor | StringConstructor)[];    color: StringConstructor;    badgeProps: PropType<Partial<BadgeProps>>;    classPrefix: StringConstructor;};export declare type IconProps = ExtractPropTypes<typeof iconProps>;declare const _default: import("vue").DefineComponent<{    dot: BooleanConstructor;    tag: {        type: PropType<keyof HTMLElementTagNameMap>;        default: keyof HTMLElementTagNameMap;    };    name: StringConstructor;    size: (NumberConstructor | StringConstructor)[];    badge: (NumberConstructor | StringConstructor)[];    color: StringConstructor;    badgeProps: PropType<Partial<BadgeProps>>;    classPrefix: StringConstructor;}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{    dot: BooleanConstructor;    tag: {        type: PropType<keyof HTMLElementTagNameMap>;        default: keyof HTMLElementTagNameMap;    };    name: StringConstructor;    size: (NumberConstructor | StringConstructor)[];    badge: (NumberConstructor | StringConstructor)[];    color: StringConstructor;    badgeProps: PropType<Partial<BadgeProps>>;    classPrefix: StringConstructor;}>>, {    dot: boolean;    tag: keyof HTMLElementTagNameMap;}>;export default _default;
 |