import { Transaction, TransactionResult } from '@mysten/sui/transactions'; import { Coin, Percent } from '../../../core'; import { Swap, SwapConstructorOptions } from '../Swap'; import { Protocol } from '../../constants'; export interface BlueMoveFunProtocolConfig { wrappedRouterPackageId: string; configurationObjectId: string; thresholdObjectId: string; dexInfoObjectId: string; } export interface BlueMoveFunSwapOptions extends SwapConstructorOptions { xForY: boolean; } export declare class BlueMoveFunSwap extends Swap> { readonly xForY: boolean; constructor(options: BlueMoveFunSwapOptions); protocol(): Protocol; swap: (routeObject: TransactionResult, slippage: Percent) => (tx: Transaction) => void; }