import type { ButtonHTMLAttributes, ReactNode } from 'react';
import { type VariantProps } from 'class-variance-authority';
declare const buttonVariants: (props?: ({
variant?: "text" | "primary" | "secondary" | "tertiary" | "outline" | "ghost" | "destructive" | null | undefined;
size?: "sm" | "md" | "lg" | null | undefined;
rounded?: "square" | "pill" | null | undefined;
textOnly?: boolean | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export interface ButtonProps extends ButtonHTMLAttributes, VariantProps {
children: ReactNode;
textButton?: boolean;
prefixIcon?: ReactNode;
suffixIcon?: ReactNode;
loading?: boolean;
asChild?: boolean;
}
declare const Button: import("react").ForwardRefExoticComponent>;
export { Button, buttonVariants };