import React, { Attributes, MouseEventHandler } from 'react'; import { IconType } from 'react-icons/lib/esm/iconBase'; declare const IconButton: React.ForwardRefExoticComponent<{ Icon: IconType; href?: string; target?: string; label?: string; labelShort?: string; title?: string; fill?: string; fillColorName?: string; onClick?: MouseEventHandler; onMouseDown?: MouseEventHandler; style?: React.CSSProperties; size?: number; disabled?: boolean; attributes?: Attributes; invert?: boolean; } & React.RefAttributes>; export default IconButton;