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