import { Router } from "express"; /** * * Wallet authorization controller. Authorizations are done in 3 steps: * 1. User requests a token with a random amount of tokens to be sent to a random address * 2. User sends a transaction with the amount of tokens requested in step 1 to the address (client only) * 3. User sends the transaction digest to the server and receives a JWT token * */ declare const AuthRouter: Router; export { AuthRouter, };