import { ButtonHTMLAttributes } from 'react'; export interface IconButtonProps extends Omit, 'style'> { /** The value of the aria-label. */ 'aria-label': string; /** The variant of the button. */ variant?: 'destructive'; /** true if the button should be rendered without a border; otherwise, false. The default is false. */ noBorder?: boolean; /** true to render the button a bit wider; otherwise, false. The default is false. */ wide?: boolean; } /** Represents a component for a button with an icon. */ export declare const IconButton: import('react').ForwardRefExoticComponent>;