import type { ExtractPropTypes } from 'vue'; import type button from './button.vue'; export declare const buttonTypes: readonly ["default", "primary", "success", "warning", "info", "danger", "text", ""]; export declare const buttonNativeTypes: readonly ["button", "submit", "reset"]; export declare const buttonProps: { readonly size: { readonly type: _vue_runtime_core.PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly type: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, "", boolean>; readonly nativeType: import("@element-plus-next/vue-utils").EpPropFinalized; readonly loading: BooleanConstructor; readonly loadingIcon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, () => import("@vue/runtime-core").DefineComponent<{}, {}, {}, import("@vue/runtime-core").ComputedOptions, import("@vue/runtime-core").MethodOptions, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly>, {}>, boolean>; readonly plain: BooleanConstructor; readonly text: BooleanConstructor; readonly link: BooleanConstructor; readonly bg: BooleanConstructor; readonly autofocus: BooleanConstructor; readonly round: BooleanConstructor; readonly circle: BooleanConstructor; readonly color: StringConstructor; readonly dark: BooleanConstructor; readonly autoInsertSpace: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare const buttonEmits: { click: (evt: MouseEvent) => boolean; }; export declare type ButtonProps = ExtractPropTypes; export declare type ButtonEmits = typeof buttonEmits; export declare type ButtonType = ButtonProps['type']; export declare type ButtonNativeType = ButtonProps['nativeType']; export declare type ButtonInstance = InstanceType;