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