import { Transaction, TransactionResult } from '@mysten/sui/transactions'; import { BigintIsh, Coin, Percent } from '../../../core'; import { Swap, SwapConstructorOptions } from '../Swap'; import { Protocol } from '../../constants'; export interface FlowxV3RouterConfig { wrappedRouterPackageId: string; poolRegistryObjectId: string; versionedObjectId: string; } interface FlowxV3SwapOptions extends SwapConstructorOptions { xForY: boolean; poolFee: BigintIsh; sqrtPriceX64Limit: BigintIsh; minSqrtPriceX64HasLiquidity: BigintIsh; maxSqrtPriceX64HasLiquidity: BigintIsh; } export declare class FlowxV3Swap extends Swap> { readonly xForY: boolean; readonly poolFee: BigintIsh; readonly sqrtPriceX64Limit: BigintIsh; readonly minSqrtPriceX64HasLiquidity: BigintIsh; readonly maxSqrtPriceX64HasLiquidity: BigintIsh; constructor(options: FlowxV3SwapOptions); protocol(): Protocol; swap: (routeObject: TransactionResult, slippage: Percent) => (tx: Transaction) => void; } export {};