/// import "../styles/popup.scss"; type Options = { mutex: boolean; }; export declare class Popup { static BIND_EVENT_NAME: string; private id; private container; private node; private onBeforeCloseFn; constructor(options?: Options); mount: (node: JSX.Element) => undefined; onBeforeDestroy: (fn: () => unknown) => void; destroy: () => void; } export {};