import { ExtractPropTypes, PropType, Component } from 'vue'; export declare const iconProps: { icon: { type: PropType; }; /** * 按钮图标 */ button: { type: BooleanConstructor; }; /** * 禁用 */ disabled: { type: BooleanConstructor; }; /** * 是否为loading状态 */ loading: { type: BooleanConstructor; }; }; export type IconPropsT = ExtractPropTypes;