import { iResponse, GenericResponse, ResponseType, NormalizedResponse } from "./response";
import { Scenario } from "./scenario";
import { Value } from './value';
export declare class ScriptResponse extends GenericResponse implements iResponse {
    readonly typeName: string;
    readonly type: ResponseType;
    constructor(scenario: Scenario, response: NormalizedResponse);
    evaluate(context: any, callback: Function): Promise<any>;
    find(path: string): Promise<Value>;
    findAll(path: string): Promise<Value[]>;
}
