export declare const showModal: (iframe: HTMLIFrameElement, backdrop: HTMLDivElement) => void; export declare const hideModal: (iframe: HTMLIFrameElement, backdrop: HTMLDivElement) => void; export declare const updateSize: (iframe: HTMLIFrameElement, width: number, height: number) => void; export declare const iframeId = "argent-webwallet-iframe"; export declare const createModal: (targetUrl: string, shouldShow: boolean) => Promise<{ iframe: HTMLIFrameElement; backdrop: HTMLDivElement; }>;