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>; export default IconButton; export type { IconButtonProps };