import type { JSX, ReactElement } from 'react'; import type { TooltipProps } from '../../components/Tooltip/Tooltip'; export type TooltipWrapperProps = { children: ReactElement; tooltipTranslationKey: string; placement?: TooltipProps['placement']; width?: string; className?: string; showOnHover?: boolean; disabled?: boolean; }; export declare function TooltipWrapper({ children, tooltipTranslationKey, placement, width, className, showOnHover, disabled, }: TooltipWrapperProps): JSX.Element;