import * as TooltipPrimitive from "@radix-ui/react-tooltip"; import * as React from "react"; import type { MaxWidthProps } from "styled-system"; declare const TooltipProvider: React.FC; type TooltipProps = TooltipPrimitive.TooltipProps & { supportMobileTap?: boolean; }; declare function Tooltip({ children, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element; declare namespace Tooltip { var displayName: string; } declare const TooltipTrigger: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; interface StyledTooltipContentProps extends React.ComponentPropsWithoutRef, MaxWidthProps { children?: React.ReactNode; } declare const TooltipContent: React.ForwardRefExoticComponent>; export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };