import { DexType, PoolType, PriceType, QuoteType, TradingPool, UITokenAmount } from '../../types'; import { App } from '../../../generated'; import { PieceSwapPoolInfo } from '../../../generated/obric/piece_swap'; export declare class ObricTradingPool extends TradingPool { pieceSwapPool: PieceSwapPoolInfo | null; get dexType(): DexType; get poolType(): PoolType; get xReserve(): number; get yReserve(): number; getPrice(): PriceType; getQuote(inputUiAmt: UITokenAmount, isXtoY: boolean): QuoteType; getQuoteWithFixedOutput(outputAmt: number, isXtoY: boolean): QuoteType; isStateLoaded(): boolean; reloadStateInternal(app: App): Promise; isRoutable(fixedOut: boolean, isXtoY: boolean): boolean; } //# sourceMappingURL=ObricTradingPool.d.ts.map