import { ExtractPropTypes } from 'vue'; export declare const ButtonType: string[]; export declare const ButtonSize: string[]; export declare const ButtonBorderColor: string[]; export declare const ButtonBorderStyle: string[]; export declare const buttonProps: { type: { type: StringConstructor; values: string[]; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; size: { type: StringConstructor; values: string[]; default: string; }; border: { type: StringConstructor; values: string[]; }; borderStyle: { type: StringConstructor; values: string[]; default: string; }; circle: { type: BooleanConstructor; default: boolean; }; loading: { type: BooleanConstructor; default: boolean; }; }; export declare type ButtonProps = ExtractPropTypes;