import { Token } from "@0xsquid/squid-types"; import { SwapDirection } from "../../core/types/swap"; /** * Returns an array of the available tokens based on the provided config and direction */ export declare const useSquidTokens: (direction?: SwapDirection) => { tokens: Token[]; findToken: (address?: string, chainId?: string) => Token | undefined; evmTokens: Token[]; solanaTokens: Token[]; cosmosTokens: Token[]; bitcoinTokens: Token[]; suiTokens: Token[]; xrplTokens: Token[]; stellarTokens: Token[]; cantonTokens: Token[]; };