import React from 'react';
import './Popover.style.scss';
import type { Props } from './Popover.types';
/**
 * The Popover component allows adding a Popover to whatever provided
 * `triggerComponent`. It will show the Popover after a specific event, which is
 * defined by the provided `trigger` prop.
 *
 * Popover uses @tippyjs/react under the hood - possible attributes for future modification
 * can be found here: https://atomiks.github.io/tippyjs/v6/all-props/
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const Popover: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default Popover;
