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