import type { IconType } from 'react-icons';
import * as React from 'react';
import { type ButtonProps } from './Button';
interface IconButtonProps extends ButtonProps {
    icon: IconType;
    label: string;
}
declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
export default IconButton;
export type { IconButtonProps };
