export declare enum AmmWay { ADD_LIQUIDITY = "add_liquidity", REMOVE_LIQUIDITY = "remove_liquidity" } export declare const AMM_WAY_MAP: { add_liquidity: string; remove_liquidity: string; }; export declare enum ClmmWay { CREATE_POSITION = "create_position", INCREASE_LIQUIDITY = "increase_liquidity", DECREASE_LIQUIDITY = "decrease_liquidity", CLOSE_POSITION = "close_position", HARVEST_POSITION = "harvest_position" } export declare const CLMM_WAY_MAP: { create_position: string; increase_liquidity: string; decrease_liquidity: string; close_position: string; harvest_position: string; }; export declare enum LendWay { LEND = "lend", BORROW = "borrow", REPAY = "repay", WITHDRAW = "withdraw" } export declare const LEND_WAY_MAP: { lend: string; borrow: string; repay: string; withdraw: string; }; export declare enum FarmWay { DEPOSIT = "deposit", WITHDRAW = "withdraw", RELOCK = "relock", HARVEST = "harvest" } export declare const FARM_WAY_MAP: { deposit: string; withdraw: string; relock: string; harvest: string; };