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