import { StatusManager } from '.'; import { AcceptSlippageUpdateHook, Step } from '../types'; /** * This method checks whether the new and updated Step meets the required slippage conditions. * If yes it returns the updated Step. * If no and if user interaction is allowed it triggers the acceptSlippageUpdateHook. If no user interaction is allowed it aborts. * * @param statusManager * @param oldStep * @param newStep * @param acceptSlippageUpdateHook * @param allowUserInteraction */ export declare const stepComparison: (statusManager: StatusManager, oldStep: Step, newStep: Step, acceptSlippageUpdateHook: AcceptSlippageUpdateHook, allowUserInteraction: boolean) => Promise;