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