/// interface ButtonProps extends React.ButtonHTMLAttributes { size?: 'small' | 'medium' | 'large'; variant?: 'primary' | 'secondary' | 'ghost'; shadow?: boolean; active?: boolean; disabled?: boolean; } declare const Button: React.FC; interface IconButtonProps extends React.ButtonHTMLAttributes { icon: string; size?: 'small' | 'medium' | 'large'; variant?: 'primary' | 'secondary' | 'ghost'; shadow?: boolean; active?: boolean; disabled?: boolean; } declare const IconButton: React.FC; interface SVGIconProps extends React.SVGAttributes { icon: string; } declare const Icon: React.FC; export { Button, Icon, IconButton };