import type { ComponentPropsWithoutRef } from "react";
import { VariantProps } from "class-variance-authority";
import buttonVariants from "./variants";
export interface ButtonProps extends ComponentPropsWithoutRef<"button">, VariantProps<typeof buttonVariants> {
}
declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
export { Button, buttonVariants };
