import type { AdaptedWallet } from '@relayprotocol/relay-sdk'; import type { TronWeb } from 'tronweb'; export type TronAddress = `T${string}`; export type TronTxHash = string; export type TronWallet = { address(): Promise; vmType: 'tvm'; } & AdaptedWallet; export declare function getTronWallet(walletAddress: TronAddress, tronWeb: TronWeb): TronWallet; //# sourceMappingURL=tron.d.ts.map