/** * * @param {{host:string, port?: number}} opts * @returns {Promise} */ export function pairRemote({ host, port }: { host: string; port?: number; }): Promise; /** * * @param {{host: string, token:string, port?: number}} opts */ export function testRemote({ host, token, port }: { host: string; token: string; port?: number; }): Promise; //# sourceMappingURL=rc-pair.d.ts.map