import BrowserConnection from './connection/Browser.js';
/**
 * Browser connection proxy
 * Provide functionality to easily forward messages from one connection to another and back
 * @category aepp wallet communication
 * @param con1 - first connection
 * @param con2 - second connection
 * @returns a function to stop proxying
 */
declare const _default: (con1: BrowserConnection, con2: BrowserConnection) => (() => void);
export default _default;
