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