/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the props of the [KendoReact PopoverActionsBar](https://www.telerik.com/kendo-react-ui/components/tooltip/api/popoveractionsbar) component. */ export interface PopoverActionsBarProps { /** * Sets the horizontal alignment of the PopoverActionsBar buttons. * * The possible values are: * * `start` * * `center` * * `end` * * `stretched` (default) */ alignment?: string; /** * Sets the orientation of the PopoverActionsBar buttons. * * The possible values are: * * `horizontal` (default) * * `vertical` */ orientation?: string; /** * @hidden */ children?: React.ReactNode; }