import { type ButtonHTMLAttributes } from "react"; export type ButtonVariant = "primary" | "secondary" | "outline" | "ghost" | "destructive"; export type ButtonSize = "xs" | "sm" | "md" | "lg"; export interface ButtonProps extends ButtonHTMLAttributes { variant?: ButtonVariant; size?: ButtonSize; fullWidth?: boolean; iconOnly?: boolean; } export declare const Button: import("react").ForwardRefExoticComponent>;