import type { ButtonProps } from 'primevue'; import { ButtonColor, ButtonVariant, ComponentSize } from '../../enums'; interface WtButtonProps extends /* @vue-ignore */ ButtonProps { color?: ButtonColor; disabled?: boolean; loading?: boolean; size?: ComponentSize; wide?: boolean; widthByContent?: boolean; icon?: string; iconPrefix?: string; badge?: string; badgeSeverity?: string; badgeAbsolutePosition?: boolean; variant?: ButtonVariant; } declare var __VLS_15: {}, __VLS_24: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_15) => any; } & { badge?: (props: typeof __VLS_24) => any; }; declare const __VLS_base: import("vue").DefineComponent void; }, string, import("vue").PublicProps, Readonly & Readonly<{ onClick?: (...args: any[]) => any; }>, { disabled: boolean; size: ComponentSize; color: ButtonColor; icon: string; iconPrefix: string; loading: boolean; wide: boolean; widthByContent: boolean; variant: ButtonVariant; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };