import type { HTMLAnchorAttributes } from 'svelte/elements';
import { type ButtonVariant, type ButtonSize } from './button.variants';
import type { ClassValue } from 'tailwind-variants';
type Props = Omit<HTMLAnchorAttributes, 'class'> & {
    variant?: ButtonVariant;
    size?: ButtonSize;
    class?: ClassValue;
};
declare const LinkButton: import("svelte").Component<Props, {}, "">;
type LinkButton = ReturnType<typeof LinkButton>;
export default LinkButton;
