declare type IconButtonProps = { icon: string; className?: string; tabIndex?: number; style?: any; disabled?: any; onClick?: any; }; declare const IconButton: (props: IconButtonProps) => JSX.Element; export default IconButton;