import React, { CSSProperties } from 'react'; import { TooltipProps } from 'antd/es/tooltip'; export interface IconInterface { size?: 'large' | 'middle' | 'small' | number | [number, number]; type?: 'primary' | 'border'; disabled?: boolean; active?: boolean; className?: string; style?: CSSProperties; onClick?: (e: any) => void; children: React.ReactNode; toolTipConfig?: TooltipProps; } declare const WhaleIconButton: ({ disabled, active, className, size, style, onClick, children, toolTipConfig, type }: IconInterface) => JSX.Element; export default WhaleIconButton;