import { Connection, Guest, Schema } from './types'; /** * Perform a handshake with the target iframe, when the handshake is confirmed * resolve the connection object containing RPCs and properties * * @param guest * @param schema * @returns Promise */ declare function connect(guest: Guest, schema?: Schema): Promise; declare const _default: { connect: typeof connect; }; export default _default;