import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const buttonVariants: (props?: ({ variant?: "primary" | "secondary" | "neutral" | "danger" | "success" | null | undefined; size?: "sm" | "lg" | "xl" | "md" | null | undefined; type?: "ghost" | "subtle" | null | undefined; isOnlyIcon?: boolean | null | undefined; isLoading?: boolean | "undefined" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface ButtonProps extends Omit, 'type'>, VariantProps { isLoading?: boolean; htmlType?: React.ButtonHTMLAttributes['type']; asChild?: boolean; } declare const Button: React.ForwardRefExoticComponent>; export { Button, buttonVariants };