import React from 'react'; import './index.scss'; declare type IconButtonType = 'primary' | 'secondary' | 'normal'; interface IconButtonProps { type?: IconButtonType; disable?: boolean; tipInfo?: string; children: React.ReactNode; loading?: boolean; hasBorder?: boolean; ref?: any; extraCls?: string; onClick?: (e: any) => void; } declare const IconButton: React.FunctionComponent; export default IconButton;