import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const buttonVariants: (props?: ({ variant?: "primary" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined; size?: "sm" | "md" | "lg" | "icon" | null | undefined; } & import("../../utils/cva").ClassProp) | undefined) => string; declare const Button: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "onClick"> & VariantProps<(props?: ({ variant?: "primary" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined; size?: "sm" | "md" | "lg" | "icon" | null | undefined; } & import("../../utils/cva").ClassProp) | undefined) => string> & { asChild?: boolean; icon?: React.ReactNode; loading?: boolean; tooltip?: React.ReactNode; onClick?(e: React.MouseEvent): void | Promise; } & React.RefAttributes>; export { Button, buttonVariants };