import { ValidationResult } from "./types.mjs"; import { BNBAddressType } from "./bnb.mjs"; //#region src/aliases/usdt-bep20.d.ts /** * Supported USDT BEP-20 address categories. */ type USDTBEP20AddressType = BNBAddressType; /** * Result returned by `validateUSDTBEP20()`. */ type USDTBEP20ValidationResult = ValidationResult; /** * Validates a USDT address on the BNB Smart Chain (BEP‑20). * * Alias of `validateBEP20` – verifies the standard EVM hex format and EIP‑55 checksum. * * @param address - The USDT BEP‑20 address to validate. * @returns A `ValidationResult` indicating whether the address is valid and, if valid, its detected type. */ declare function validateUSDTBEP20(address: string): USDTBEP20ValidationResult; //#endregion export { USDTBEP20AddressType, USDTBEP20ValidationResult, validateUSDTBEP20 };