import { type Writable } from 'svelte/store'; import type { PopupSettings } from './types.js'; export declare const storePopup: Writable; export declare function popup(triggerNode: HTMLElement, args: PopupSettings): { update(newArgs: PopupSettings): void; destroy(): void; };