export declare const Button: import("utils-xqp").SFCWithInstall<import("vue").DefineComponent<{
    readonly type: {
        readonly type: import("vue").PropType<import("./button").IButtonType>;
        readonly default: "";
    };
    readonly disabled: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly icon: {
        readonly type: StringConstructor;
        readonly default: "";
    };
}, {
    ref: import("vue").Ref<HTMLButtonElement | undefined>;
    type: import("vue").ComputedRef<import("./button").IButtonType>;
    disabled: import("vue").ComputedRef<boolean>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    click: (evt: MouseEvent) => boolean;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    readonly type: {
        readonly type: import("vue").PropType<import("./button").IButtonType>;
        readonly default: "";
    };
    readonly disabled: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly icon: {
        readonly type: StringConstructor;
        readonly default: "";
    };
}>> & {
    onClick?: ((evt: MouseEvent) => any) | undefined;
}, {
    readonly type: import("./button").IButtonType;
    readonly disabled: boolean;
    readonly icon: string;
}>> & Record<string, any>;
export default Button;
