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