import { ContractProvider } from '@ton/ton'; import { AddressType } from '../../../../types.js'; import { DEX_VERSION } from '../../constants.js'; import { WStablePoolV2_1 } from '../../v2_1/pool/WStablePoolV2_1.js'; import { LpAccountV2_2 } from '../LpAccount/LpAccountV2_2.js'; import '../../v2_1/pool/BasePoolV2_1.js'; import '../../../core/Contract.js'; import '../../../core/JettonMinter.js'; import '../../../core/JettonWallet.js'; import '../../v2_1/LpAccount/LpAccountV2_1.js'; declare class WStablePoolV2_2 extends WStablePoolV2_1 { static readonly version: DEX_VERSION; getLpAccount(provider: ContractProvider, params: { ownerAddress: AddressType; }): Promise; } export { WStablePoolV2_2 };