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