import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; declare const buttonVariants: (props?: ({ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "sandbox" | null | undefined; size?: "default" | "sm" | "lg" | "xl" | "icon" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface ButtonProps extends React.ButtonHTMLAttributes { variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "sandbox" | null; size?: "default" | "sm" | "lg" | "xl" | "icon" | null; asChild?: boolean; loading?: boolean; children?: React.ReactNode; } declare const Button: React.ForwardRefExoticComponent>; export { Button as B, type ButtonProps as a, buttonVariants as b };