import { Address } from '../../types'; import { Network } from '../../constants'; export declare const getIdentifierPrefix: (dexKey: string, tokenA: Address, tokenB: Address) => string; export declare const getPairName: (tokenA: Address, tokenB: Address) => string; export declare const getPoolIdentifier: (dexKey: string, tokenA: Address, tokenB: Address) => string; export declare const normalizeTokenAddress: (address: string) => string; export declare const denormalizeTokenAddress: (address: string) => string; export declare const isStablePair: (network: Network, normalizedSrcTokenAddress: string, normalizedDestTokenAddress: string) => boolean;