import type { WithElementRef } from "bits-ui"; import type { HTMLAnchorAttributes, HTMLButtonAttributes } from "svelte/elements"; import { type VariantProps } from "tailwind-variants"; export declare const buttonVariants: import("tailwind-variants").TVReturnType<{ variant: { default: string; destructive: string; outline: string; ghost: string; link: string; subtle: string; brand: string; }; size: { default: string; sm: string; lg: string; icon: string; "icon-sm": string; }; }, undefined, "inline-flex select-none items-center justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-semibold tracking-wide active:scale-[99%] disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", { variant: { default: string; destructive: string; outline: string; ghost: string; link: string; subtle: string; brand: string; }; size: { default: string; sm: string; lg: string; icon: string; "icon-sm": string; }; }, undefined, import("tailwind-variants").TVReturnType<{ variant: { default: string; destructive: string; outline: string; ghost: string; link: string; subtle: string; brand: string; }; size: { default: string; sm: string; lg: string; icon: string; "icon-sm": string; }; }, undefined, "inline-flex select-none items-center justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-semibold tracking-wide active:scale-[99%] disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", unknown, unknown, undefined>>; export type ButtonVariant = VariantProps["variant"]; export type ButtonSize = VariantProps["size"]; export type ButtonProps = WithElementRef & WithElementRef & { variant?: ButtonVariant; size?: ButtonSize; }; declare const Button: import("svelte").Component; type Button = ReturnType; export default Button;