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