import React from 'react'; import type { LiteralUnion } from 'antd/es/_util/type'; import type { TooltipProps } from 'antd'; import { ToolTipColorTypes } from '../tooltip'; import { TagProps } from './types'; export interface WhaleListTagProps extends TagProps { toolTipBg?: LiteralUnion; hiddenToolTip?: boolean; toolTipProps?: TooltipProps; closable?: boolean; closeIcon?: React.ReactNode; onClose?: (e: React.MouseEvent) => void; lengthType?: 'short' | 'long' | 'none'; } export declare function WhaleListTag({ color, visible, children, size, style, toolTipBg, hiddenToolTip, toolTipProps, closable, closeIcon, onClose, lengthType, className }: WhaleListTagProps): JSX.Element;