import type { BaseComponentProps } from '../base-component';
export type TooltipProps = {
    renderMode?: 'html';
    isShowOverflowTextTooltip?: boolean;
    confine?: boolean;
} & BaseComponentProps;
export declare const Tooltip: import("react").FC<TooltipProps>;
