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" | "icon-sm" | "icon-lg" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export type ButtonProps = React.ComponentProps<'button'> & VariantProps & { asChild?: boolean; }; declare function Button({ className, variant, size, asChild, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element; export { Button, buttonVariants }; //# sourceMappingURL=button.d.ts.map