///
import { type HintIconProps } from '../HintIcon';
import type { TooltipPlacement } from '../types';
export type IconProps = Pick & {
onClick: () => void;
tooltipPlacement: TooltipPlacement;
};
export declare const Icon: (props: IconProps) => JSX.Element;