declare const DEX_VERSION: { readonly v1: "v1"; /** * We recommend using `v2_1` contracts * only for withdrawal functionality on already deployed contracts. * @see https://t.me/stonfidex/712 */ readonly v2_1: "v2_1"; readonly v2_2: "v2_2"; }; type DEX_VERSION = (typeof DEX_VERSION)[keyof typeof DEX_VERSION]; declare const DEX_TYPE: { readonly CPI: "constant_product"; readonly Stable: "stableswap"; readonly WCPI: "weighted_const_product"; readonly WStable: "weighted_stableswap"; }; type DEX_TYPE = (typeof DEX_TYPE)[keyof typeof DEX_TYPE]; export { DEX_TYPE, DEX_VERSION };