import type { Chain, Network } from "@wormhole-foundation/sdk-base"; import { type TokenSymbol } from "@wormhole-foundation/sdk-base"; import type { ChainContext, TokenId } from "@wormhole-foundation/sdk-definitions"; export interface TokenDetails { id: TokenId; decimals: number; symbol?: TokenSymbol; wrapped?: TokenId; } export declare function uniqueTokens(tokens: TokenId[]): TokenId[]; export declare function tokenAddresses(tokens: TokenId[]): string[]; export declare function getTokenDetails(chain: ChainContext, token: TokenId, decimals?: number): Promise; //# sourceMappingURL=token.d.ts.map