import { BaseStepExecutor } from '../BaseStepExecutor.js'; import type { LiFiStepExtended, StepExecutorOptions } from '../types.js'; export interface EclipseStepExecutorOptions extends StepExecutorOptions { walletAdapter: any; } export declare class EclipseStepExecutor extends BaseStepExecutor { private walletAdapter; private commissionBps?; private commissionBpsSDK?; private slippage?; constructor(options: EclipseStepExecutorOptions); executeStep(step: LiFiStepExtended): Promise; }