/** * @emits {MouseEvent} click - Fires when button is clicked * @emits {MouseEvent} mousedown - Fires when button is mousedown * * Note: All other props (icon, icon-prefix, size, color, tooltip, tooltip-position) are passed to wt-icon via $attrs. * For more information check "Icons" docs. */ type __VLS_Props = { /** * Disables btn * @type {boolean} * @default false */ disabled?: boolean; }; declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { click: (...args: MouseEvent[]) => any; mousedown: (...args: MouseEvent[]) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onClick?: (...args: MouseEvent[]) => any; onMousedown?: (...args: MouseEvent[]) => any; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const _default: typeof __VLS_export; export default _default;