import { PtonV2_1 } from '../../pTON/v2_1/PtonV2_1.js'; import { LpAccountV2_1 } from './LpAccount/LpAccountV2_1.js'; import { BasePoolV2_1 } from './pool/BasePoolV2_1.js'; import { CPIPoolV2_1 } from './pool/CPIPoolV2_1.js'; import { StablePoolV2_1 } from './pool/StablePoolV2_1.js'; import { WCPIPoolV2_1 } from './pool/WCPIPoolV2_1.js'; import { WStablePoolV2_1 } from './pool/WStablePoolV2_1.js'; import { BaseRouterV2_1 } from './router/BaseRouterV2_1.js'; import { CPIRouterV2_1 } from './router/CPIRouterV2_1.js'; import { StableRouterV2_1 } from './router/StableRouterV2_1.js'; import { WCPIRouterV2_1 } from './router/WCPIRouterV2_1.js'; import { WStableRouterV2_1 } from './router/WStableRouterV2_1.js'; import { VaultV2_1 } from './vault/VaultV2_1.js'; import '@ton/ton'; import '../../../types.js'; import '../../pTON/AbstractPton.js'; import '../../pTON/constants.js'; import '../../pTON/v1/PtonV1.js'; import '../../core/Contract.js'; import '../../core/JettonMinter.js'; import '../constants.js'; import '../../core/JettonWallet.js'; /** @deprecated. Use explicit Router instead (e.g. DEX.Router.CPI) or use `dexFactory` */ declare class RouterV2_1 extends BaseRouterV2_1 { static readonly CPI: typeof CPIRouterV2_1; static readonly Stable: typeof StableRouterV2_1; static readonly WCPI: typeof WCPIRouterV2_1; static readonly WStable: typeof WStableRouterV2_1; } /** @deprecated. Use explicit Pool instead (e.g. DEX.Pool.CPI) or use `dexFactory` */ declare class PoolV2_1 extends BasePoolV2_1 { static readonly CPI: typeof CPIPoolV2_1; static readonly Stable: typeof StablePoolV2_1; static readonly WCPI: typeof WCPIPoolV2_1; static readonly WStable: typeof WStablePoolV2_1; } declare const DEX: { readonly Router: typeof RouterV2_1; readonly Pool: typeof PoolV2_1; readonly LpAccount: typeof LpAccountV2_1; readonly Vault: typeof VaultV2_1; readonly pTON: typeof PtonV2_1; }; export { CPIPoolV2_1, CPIRouterV2_1, DEX, LpAccountV2_1, PoolV2_1, RouterV2_1, StablePoolV2_1, StableRouterV2_1, VaultV2_1, WCPIPoolV2_1, WCPIRouterV2_1, WStablePoolV2_1, WStableRouterV2_1 };