import React from 'react'; import type { JSX, PropsWithChildren, ReactNode } from 'react'; export type TooltipProps = { tip: string | ReactNode; isOpen?: boolean; withArrow?: boolean; placement?: 'top' | 'bottom' | 'left' | 'right'; className?: string; width?: string; dataTestId?: string; disabled?: boolean; }; export declare function TooltipComponent({ children, isOpen, tip, withArrow, placement, className, width, dataTestId, disabled, }: PropsWithChildren): JSX.Element; export declare const Tooltip: React.NamedExoticComponent>;