import { BaseStepExecutor } from '../BaseStepExecutor.js'; import type { LiFiStepExtended, StepExecutorOptions } from '../types.js'; export interface SolanaStepExecutorOptions extends StepExecutorOptions { walletAdapter: any; } export declare class SolanaStepExecutor extends BaseStepExecutor { private walletAdapter; constructor(options: SolanaStepExecutorOptions); executeStep(step: LiFiStepExtended): Promise; }