import { PopoverPortalProps } from '../../common/components/popover/PopoverPortal'; export interface TooltipProps extends Omit { children: string; } /** * The `` component is used to display additional information or actions related to a specific element.
* It is used in combination with the `useTooltip` hook. */ declare const Tooltip: { ({ children, ...rest }: TooltipProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Tooltip;