import React from 'react';
import { Props } from './Tooltip.types';
import './Tooltip.style.scss';
/**
 * Tooltip component
 *
 * Shows a non-interactable popover component with `tooltip` role, and update the aria label/description of the trigger component
 *
 * @see [WCAG - Tooltip pattern]{@link https://www.w3.org/WAI/ARIA/apg/patterns/tooltip/}
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const Tooltip: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default Tooltip;
