import type { ComponentPropsWithoutRef, ComponentRef, FC, Ref } from 'react'; import { Tooltip as ArkUiTooltip } from '@ark-ui/react/tooltip'; import { type TestableProps } from '../../utils/testId'; export type TooltipContentProps = ComponentPropsWithoutRef & TestableProps & { ref?: Ref>; }; export declare const TooltipContent: FC;