import { StargateV2BridgeToken } from './stargate-v2-bridge-token'; import { StargateV2SupportedBlockchains } from './stargate-v2-cross-chain-supported-blockchains'; declare const pools: { readonly USDC: 1; readonly "USDC.e": 1; readonly USDT: 2; readonly "m.USDT": 2; readonly ETH: 13; readonly WETH: 13; readonly METIS: 17; readonly mETH: 22; }; export declare const stargateV2PoolId: Record; export type StargateV2PoolId = (typeof pools)[keyof typeof pools]; export declare function getTokenPoolByAddress(blockchain: StargateV2SupportedBlockchains, contractAddress: string): number | null; export {};