export type WalletBindResponse = { ok: true; chain_id: number; address: string; is_primary: boolean; }; export type EvmBindSigner = { address: string; signMessage(message: string): Promise; }; export type WalletBindNonceResponse = { nonce: string; message: string; expires_in_sec: number; }; //# sourceMappingURL=types.d.ts.map