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