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