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