import React, { RefObject } from 'react'; interface TextHoverTooltipProps { text: string; children: React.ReactNode; containerRef?: RefObject; } export default function TextHoverTooltip({ text, children, containerRef }: TextHoverTooltipProps): import("@emotion/react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=TextHoverTooltip.d.ts.map