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