import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const buttonVariants: (props?: ({ variant?: "primary" | "success" | "default" | "link" | "gradient" | "gradient-secondary" | "secondary" | "outline" | "ghost" | "destructive" | "destructive-outline" | "gradient-success" | "wallet" | "connect" | "disconnect" | null | undefined; size?: "sm" | "lg" | "default" | "icon" | null | undefined; animation?: "none" | "scale" | "connect" | "disconnect" | "hover" | "lift" | "glow" | "shimmer" | "tap" | "transaction" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; /** Tracking event data emitted on button interactions. */ export interface ButtonTrackingData { /** Action performed */ action: 'click'; /** Optional custom label for tracking */ trackingLabel?: string; /** Optional component context */ componentName?: string; } /** * Props for the Button component. * * Extends native button HTML attributes with CVA variant props, * the Radix `asChild` polymorphic pattern, and optional analytics tracking. */ export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { /** When true, renders the child element instead of a ` * ``` */ declare const Button: React.ForwardRefExoticComponent>; export { Button, buttonVariants }; //# sourceMappingURL=button.d.ts.map