import { type VariantProps } from "class-variance-authority"; import type { ButtonHTMLAttributes } from "react"; export type ButtonVariant = "primary" | "secondary" | "tertiary" | "quaternary" | "outline" | "ghost" | "link"; export type ButtonSize = "medium" | "small" | "xs" | "icon" | "iconSmall"; export declare const buttonVariants: (props?: ({ variant?: "secondary" | "tertiary" | "link" | "primary" | "quaternary" | "ghost" | "outline" | null | undefined; size?: "icon" | "small" | "medium" | "xs" | "iconSmall" | null | undefined; active?: boolean | null | undefined; disabled?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface ButtonProps extends ButtonHTMLAttributes, VariantProps { asChild?: boolean; variant?: ButtonVariant; active?: boolean; disabled?: boolean; buttonSize?: ButtonSize; } export declare const Button: import("react").ForwardRefExoticComponent>;