/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PopoverActionsBarProps } from './interfaces/PopoverActionsBarProps'; 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 PopoverActionBar component. */ export interface PopoverActionsBarHandle { /** * The props of the PopoverActionsBar. */ props: PopoverActionsBarProps; /** * The current element or `null` if there is none. */ element: HTMLDivElement | null; } /** * Represents the PopoverActionsBar component. */ export declare const PopoverActionsBar: React.ForwardRefExoticComponent>;