/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ViewContainerRef } from '@angular/core';
/**
 * Defines the settings for the tooltip popup.
 */
export interface PopupSettings {
    /**
     * Sets the container to which you want to append the popup.
     */
    appendTo?: ViewContainerRef;
    /**
     * Sets the class or classes for the popup.
     */
    popupClass?: string | Array<string> | object | Set<string>;
}
