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