/** * JsonPathHandler * * Handles JSONPath assertions against response body. * Supports JSONPath expressions starting with $. or $[ */ import { HttpResponse } from '../../types'; import { IAssertionHandler, AssertionResult } from '../IAssertionHandler'; export declare class JsonPathHandler implements IAssertionHandler { readonly type = "jsonpath"; canHandle(key: string): boolean; assert(key: string, value: string, response: HttpResponse): AssertionResult; private valueToString; private compareValues; }