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