import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface LegacyTooltipContainerProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; fixedPosition?: boolean; getRef?: GetRef; id?: string; invert?: boolean; isDiv?: boolean; placement?: 'bottom' | 'left' | 'right' | 'top'; show?: boolean; tooltipContent: React.ReactNode; zIndex?: number; } /** * @deprecated * Use `TooltipContainer` instead. */ export declare function LegacyTooltipContainer({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, fixedPosition, getRef, id, invert, isDiv, margin, placement, show: showProp, tooltipContent, zIndex, ...rest }: LegacyTooltipContainerProps): React.JSX.Element; export {};