import { HTMLAttributes } from 'vue'; import { PrimitiveProps } from 'radix-vue'; export interface ButtonProps extends PrimitiveProps { class?: HTMLAttributes['class']; size?: 'xxs' | 'xs' | 'sm' | 'md'; intent?: 'primary' | 'neutral' | 'error'; variant?: 'fill' | 'stroke' | 'lighter' | 'ghost'; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { size: "xxs" | "xs" | "sm" | "md"; variant: "fill" | "stroke" | "lighter" | "ghost"; intent: "primary" | "neutral" | "error"; as: import('radix-vue').AsTag | import('vue').Component; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, { default?: (props: {}) => any; }>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };