import { DevCallBack, ExecutionStack, RunOptions } from './types'; /** * * 执行下一项 * */ export declare function runNext({ executionStack, runOptions, fn, }: { executionStack: ExecutionStack; runOptions: RunOptions; fn: (message: string, suite: DevCallBack) => Promise; }): Promise;