import { HTMLAttributes } from 'vue';
import { PrimitiveProps } from 'radix-vue';
export interface LinkButtonProps extends PrimitiveProps {
class?: HTMLAttributes['class'];
size?: 'sm' | 'md';
intent?: 'primary' | 'black' | 'gray' | 'error';
underline?: boolean;
disabled?: boolean;
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, {
size: "sm" | "md";
intent: "primary" | "black" | "gray" | "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;
};
};