import Instruction from '.';
import Processor from '../Processor';
import { FlowNodeModel } from '../types';
export default class extends Instruction {
    run(node: FlowNodeModel, prevJob: any, processor: Processor): Promise<any>;
}
