import type { Page } from "@playwright/test"; type PopupConfigMap = { networkAdded: PopupConfig; networkInfo: PopupConfig; recoveryPhrase: PopupConfig; generic: PopupConfig; }; type PopupConfig = { selector: string; timeout?: number; }; export declare const popupConfigs: PopupConfigMap; export declare function closePopup(page: Page, config: PopupConfig): Promise; export {};