import * as TooltipPrimitive from '@radix-ui/react-tooltip'; import type { FC, PropsWithChildren, ReactNode } from 'react'; export type TooltipProps = PropsWithChildren<{ className?: string; content: ReactNode; asChild?: boolean; placement?: TooltipPrimitive.TooltipContentProps['side']; dataTestId?: string; }>; export declare const Tooltip: FC;