import { ReactNode } from 'react'; export interface TooltipProps { label: ReactNode; /** When provided alongside `label`, renders a Rich tooltip with a title row. */ title?: string; rich?: boolean; children: ReactNode; placement?: 'top' | 'bottom' | 'left' | 'right' | 'auto'; } export declare function Tooltip({ label, title, rich, children, placement }: TooltipProps): import("react/jsx-runtime").JSX.Element;