import { ValidationResult } from "./types.mjs"; import { TronAddressType } from "./trx.mjs"; //#region src/aliases/usdt-trc20.d.ts /** * Supported USDT TRC-20 address categories. */ type USDTTRC20AddressType = TronAddressType; /** * Result returned by `validateUSDTTRC20()`. */ type USDTTRC20ValidationResult = ValidationResult; /** * Validates a USDT address on the TRON network (TRC‑20). * * Alias of `validateTRC20` – verifies Base58Check encoding and the `T` prefix. * * @param address - The USDT TRC‑20 address to validate. * @returns A `ValidationResult` indicating whether the address is valid and, if valid, its detected type. */ declare function validateUSDTTRC20(address: string): USDTTRC20ValidationResult; //#endregion export { USDTTRC20AddressType, USDTTRC20ValidationResult, validateUSDTTRC20 };