///
export 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;
export default IconButton;