import type Popup from "../Popup.js"; type RegisteredPopup = { instance: Popup; parentPopovers: Array; }; declare const addOpenedPopup: (instance: Popup, parentPopovers?: Array) => void; declare const removeOpenedPopup: (instance: Popup) => void; declare const getOpenedPopups: () => RegisteredPopup[]; export { addOpenedPopup, removeOpenedPopup, getOpenedPopups };