import React, { FocusEvent, MouseEvent, ReactNode } from 'react'; import './index.scss'; export interface IconButtonProps { className?: string | Array; children: ReactNode; disabled?: boolean; width?: string; height?: string; type?: 'button' | 'submit' | 'reset'; style?: { [key: string]: string; }; onBlur?: (e: FocusEvent) => void; onClick?: (e: MouseEvent) => void; testID?: string; } declare const IconButton: React.ForwardRefExoticComponent>; export default IconButton;