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