export type TronToken = Trc10Token | Trc20Token;
export type Trc10Token = {
    standard: "trc10";
    tokenId: string;
};
export type Trc20Token = {
    standard: "trc20";
    contractAddress: string;
};
//# sourceMappingURL=assets.d.ts.map