import { WebAuthnSigner } from '../signers/WebAuthnSigner'; import { UserInfos } from '../types'; import { AUTHAdapter } from './types'; export declare class WebAuthnAdaptor implements AUTHAdapter { private signer?; readonly chainId: string; private API; private provider; constructor(chainId: string, apiKey: string, rpcUrl?: string); connect(userId: string): Promise; logout(): Promise; getAccount(): Promise; getSigner(): WebAuthnSigner; getUserInfos(): Promise>; }