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