/**
 * Supported Chain Ids by SDK
 */
export declare enum SupportedChain {
    Mainnet = 1,
    Sepolia = 11155111,
    Base = 8453,
    Bsc = 56,
    BscTestnet = 97,
    OdysseyTestnet = 131313,
    Odyssey = 153153,
    Polygon = 137,
    PolygonAmoy = 80002
}
export declare function parseSupportedChain(chainId: number): SupportedChain;
/**
 * Odyssey chain ids
 */
export declare const ODYSSEY_CHAIN_IDS: SupportedChain[];
export declare const ZEBEC_CARD_ADDRESS: Record<SupportedChain, string>;
export declare const USDC_ADDRESS: Record<SupportedChain, string>;
export declare const WETH_ADDRESS: Record<SupportedChain, string>;
export declare const ATOKEN_ADDRESS: Record<SupportedChain, string>;
export declare const DEFAULT_GAS_LIMIT = 3000000;
