import type { TooltipProps } from 'antd';
import React from 'react';
declare type IIconTootipProps = {
iconNode: React.ReactNode;
handleClick?: (...rest: any[]) => void;
} & TooltipProps;
export default function IconTooltip(props: IIconTootipProps): JSX.Element;
export {};