import { ExtractPropTypes, PropType } from 'vue'; export declare const ButtonType: string[]; declare type ButtonTypes = 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'text'; declare type ButtonSizes = 'midium' | 'small' | 'mini'; export declare const ButtonSize: string[]; export declare const buttonProps: { type: { type: PropType; validator(value: string): boolean; }; size: { type: PropType; validator(value: string): boolean; }; plain: BooleanConstructor; round: BooleanConstructor; disabled: BooleanConstructor; }; export declare const buttonEmits: { click: (evt: MouseEvent) => boolean; }; export declare type buttonProps = ExtractPropTypes; export {};