import type { PropType } from 'vue'; type buttonType = 'default' | 'primary' | 'warning' | 'success' | 'error'; export declare const buttonProps: { type: { type: PropType; default: string; }; round: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; }; export {};