import { Types } from 'aptos'; import { DexType, PriceType, QuoteType, TradingPool, UITokenAmount } from '../types'; import { AnimeSwapPoolV1 } from '../../generated/SwapDeployer'; import { App } from '../../generated'; export declare class AnimeTradingPool extends TradingPool { pool: AnimeSwapPoolV1.LiquidityPool | null; 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(outputUiAmt: number, isXtoY: boolean): QuoteType; makePayload(inputUiAmt: UITokenAmount, minOutAmt: UITokenAmount): Types.EntryFunctionPayload; } //# sourceMappingURL=AnimeTradingPool.d.ts.map