import type { BaseComponentProps } from '../base-component';
export type TooltipProps = {
    renderMode?: 'html';
    isShowOverflowTextTooltip?: boolean;
    confine?: boolean;
} & BaseComponentProps;
export declare const Tooltip: {
    (props: TooltipProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
};
