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