import { Types } from 'aptos'; import { DexType, PriceType, QuoteType, TradingPool, UITokenAmount } from '../types'; import { App } from '../../generated'; import { PoolInfo as AptoswapPoolInfo } from '@vividnetwork/swap-sdk'; export declare class AptoswapTradingPool extends TradingPool { pool: AptoswapPoolInfo | null; poolMoveType: string | undefined; init(): void; get dexType(): DexType; get poolType(): import("@manahippo/move-to-ts").U64; get xReserve(): number; get yReserve(): number; isStateLoaded(): boolean; reloadStateInternal(app: App): Promise; getPrice(): PriceType; isRoutable(fixedOut: boolean, isXtoY: boolean): boolean; getQuote(inputUiAmt: UITokenAmount, isXtoY: boolean): QuoteType; getQuoteWithFixedOutput(outputAmt: number, isXtoY: boolean): QuoteType; makePayload(inputUiAmt: UITokenAmount, minOutAmt: UITokenAmount): Types.EntryFunctionPayload; } //# sourceMappingURL=AptoswapTradingPool.d.ts.map