/*!
 * Jodit Editor (https://xdsoft.net/jodit/)
 * Released under MIT see LICENSE.txt in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
 */
/**
 * @module types
 */
import type { IBound, IDestructible } from "./types";
import type { IUIElement } from "./ui";
export type PopupStrategy = 'leftBottom' | 'rightBottom' | 'leftTop' | 'rightTop';
export interface IPopup extends IUIElement, IDestructible {
    readonly container: HTMLElement;
    readonly isOpened: boolean;
    readonly strategy: PopupStrategy;
    viewBound: () => IBound;
    open(getBound: () => IBound, keepPosition?: boolean, parentContainer?: HTMLElement): this;
    setContent(content: IUIElement | HTMLElement | string): this;
    updatePosition(): this;
    close(): this;
    isOwnClick(e: MouseEvent): boolean;
    setZIndex(index: number): void;
}
