import type { ComponentPropsWithRef, ElementType } from 'react'; export type TooltipProperties = { /** CSS Class Name */ className?: string; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Short message communicating the function or context of a control or object. * @docs {@link https://design.visa.com/components/tooltip/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Tooltip: { ({ className, tag: Tag, ...remainingProps }: TooltipProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Tooltip;