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