/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Margin } from "@progress/kendo-angular-popup";
/**
 * @hidden
 */
export declare const DEFAULT_MARGIN: Margin;
/**
 * @hidden
 */
export declare const POPUP_SETTINGS_RTL: {
    vertical: {
        anchor: {
            vertical: string;
            horizontal: string;
        };
        popup: any;
        collision: {
            vertical: string;
            horizontal: string;
        };
        animate: string;
        popupClass: string[];
    };
    horizontal: {
        anchor: {
            vertical: string;
            horizontal: string;
        };
        popup: any;
        collision: {
            vertical: string;
            horizontal: string;
        };
        animate: string;
        popupClass: string[];
    };
};
/**
 * @hidden
 */
export declare const POPUP_SETTINGS: {
    vertical: {
        anchor: {
            vertical: string;
            horizontal: string;
        };
        popup: any;
        collision: {
            vertical: string;
            horizontal: string;
        };
        animate: string;
        popupClass: string[];
    };
    horizontal: {
        anchor: {
            vertical: string;
            horizontal: string;
        };
        popup: any;
        collision: {
            vertical: string;
            horizontal: string;
        };
        animate: string;
        popupClass: string[];
    };
};
/**
 * Settings for the Menu and ContextMenu popups.
 */
export interface PopupSettings {
    /**
     * The CSS class that will be applied to the popup container.
     */
    popupClass?: string | string[] | object | Set<string>;
    /**
     * The margin of the popup container.
     */
    margin?: Margin;
}
