import Instruction from '../../instructions';
export declare class VariablesInstruction extends Instruction {
    run(node: any, prevJob: any, processor: any): Promise<{
        status: 1;
        result: any;
    }>;
}
