import { Execution } from '@lifi/types'; import { ExecuteSwapParams } from '../../types'; export declare class SwapExecutionManager { shouldContinue: boolean; setShouldContinue: (val: boolean) => void; execute: ({ signer, step, statusManager, settings, }: ExecuteSwapParams) => Promise; }