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