import { PopoverInstance } from "./public_exports"; export declare class PopoverStack { private stack; constructor(); get openedCount(): number; push(instance: PopoverInstance): void; closePopover(instance: PopoverInstance): Promise; closeAll(): Promise; getAll(): PopoverInstance[]; }