/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PopoverProps } from './interfaces/PopoverProps'; import * as React from 'react'; /** * Represents the Object which is passed to the [`ref`](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) callback of the Popover component. */ export interface PopoverHandle { /** * The props of the Popover. */ props: PopoverProps; } /** * Represents the Popover component. */ export declare const Popover: React.ForwardRefExoticComponent>;