import { SerializedSignature } from '@mysten/sui.js/cryptography'; export interface IAuthLoginReq { readonly message: string; readonly signature: SerializedSignature; readonly address: string; readonly walletType: string; readonly mockAddress?: string; } export interface IAuthLoginResp { accessToken: string; refreshToken: string; }