declare const GetChallenge: (address: string) => Promise; declare const Authenticate: (address: string, signature: string) => Promise; declare const RefreshToken: (refreshToken: string) => Promise; declare const VerifyToken: (accessToken: string) => Promise; export { GetChallenge, Authenticate, RefreshToken, VerifyToken };