import { DexType, PoolType, PriceType, QuoteType, TradingPool, UITokenAmount } from '../../types'; import { Types } from 'aptos'; import { App } from '../../../generated'; import { Pool as AuxPool } from '../../../generated/aux/amm'; export declare class AuxTradingPool extends TradingPool { pool: AuxPool | null; get dexType(): DexType; get poolType(): PoolType; get xReserve(): number; get yReserve(): number; getPrice(): PriceType; isRoutable(fixedOut: boolean, isXtoY: boolean): boolean; getQuote(inputUiAmt: UITokenAmount, isXtoY: boolean): QuoteType; getQuoteWithFixedOutput(outputUiAmt: number, isXtoY: boolean): QuoteType; isStateLoaded(): boolean; makePayload(inputUiAmt: UITokenAmount, minOutAmt: UITokenAmount): Types.EntryFunctionPayload; reloadStateInternal(app: App): Promise; } //# sourceMappingURL=AuxTradingPool.d.ts.map