import * as React from 'react';
import { ButtonProps } from './Button';
export interface IconButtonProps extends Omit<ButtonProps, 'iconSpacing' | 'iconBefore' | 'iconAfter' | 'isFullWidth' | 'loadingText'> {
    /** Icon shown inside the button. */
    icon?: React.ReactElement;
    /** If `true`, the icon button will be rounded. */
    isRound?: boolean;
}
export declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
