declare const popupManager: { /** * Called when a popup source is going to show its content so other popups need to be hidden * @param element The popup source that is going to be shown */ setShown(element: HTMLElement): void; /** * Called when a popup source is going to hide its content so it can be removed from the shown items in the manager * @param element The popup source that is going to be hidden */ setHidden(element: HTMLElement): void; /** * Any target clicked and captured using the global click handler * @param target */ handleGlobal(target: HTMLElement): void; }; export default popupManager; //# sourceMappingURL=popupManager.d.ts.map