export * from 'penpal'; export declare function createIframe(url: string, query: { [k: string]: any; }, container: string | HTMLElement): { open: () => void; close: () => void; iframe: HTMLIFrameElement; }; export declare function createIframeModal(url: string, query: { [k: string]: any; }, onClose?: () => Promise | void | boolean, hide?: boolean): { iframe: HTMLIFrameElement; open: () => void; close: () => Promise; };