import { Dex } from './dex'; export declare enum MigrationDex { RAYDIUM = "RAYDIUM", METEORA = "METEORA", METEORA_V2 = "METEORA_V2", UNISWAP = "UNISWAP", AERODROME = "AERODROME", VALIANT = "VALIANT" } export declare enum DexScreenerDexId { METEORA = "meteora", RAYDIUM = "raydium", PUMPSWAP = "pumpswap", UNISWAP = "uniswap", ORCA = "orca", AERODROME = "aerodrome" } export declare const DexScreenerDexIdToDex: { readonly meteora: Dex.METEORA; readonly raydium: Dex.RAYDIUM; readonly pumpswap: Dex.PUMPSWAP; readonly uniswap: Dex.UNISWAP; readonly orca: Dex.ORCA; readonly aerodrome: Dex.AERODROME; }; export declare const convertDexScreenerIdToDex: (dexString?: string) => Dex | undefined; export declare const migrationDexToDex: { RAYDIUM: Dex; METEORA: Dex; AERODROME: Dex; VALIANT: Dex; }; export declare const getDefaultMigrationDex: (symbol: string) => MigrationDex;