import { ButtonProps, ButtonToggleEventDetail } from '../core/Button'; export interface VueButtonProps extends Omit { } declare function __VLS_template(): { default?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent, { type: string; disabled: boolean; loading: boolean; toggle: boolean; pressed: boolean; variant: string; size: string; shape: string; bordered: boolean; ghost: boolean; link: boolean; grouped: boolean; fullWidth: boolean; ariaLabel: string; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { blur: (event: FocusEvent) => void; click: (event: MouseEvent) => void; focus: (event: FocusEvent) => void; toggle: (detail: ButtonToggleEventDetail) => void; "update:pressed": (pressed: boolean) => void; }, string, import('vue').PublicProps, Readonly, { type: string; disabled: boolean; loading: boolean; toggle: boolean; pressed: boolean; variant: string; size: string; shape: string; bordered: boolean; ghost: boolean; link: boolean; grouped: boolean; fullWidth: boolean; ariaLabel: string; }>>> & Readonly<{ onBlur?: ((event: FocusEvent) => any) | undefined; onClick?: ((event: MouseEvent) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onToggle?: ((detail: ButtonToggleEventDetail) => any) | undefined; "onUpdate:pressed"?: ((pressed: boolean) => any) | undefined; }>, { toggle: boolean; disabled: boolean; type: "button" | "submit" | "reset"; link: boolean; ariaLabel: string; size: "x-sm" | "sm" | "md" | "lg" | "xl"; variant: "success" | "primary" | "secondary" | "warning" | "danger" | "monochrome" | ""; bordered: boolean; shape: "capsule" | "rounded" | "circle" | "square" | "rounded-square" | ""; ghost: boolean; grouped: boolean; fullWidth: boolean; loading: boolean; pressed: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=VueButton.vue.d.ts.map