import { iResponse, iValue } from "../interfaces";
import { HttpResponse } from "../httpresponse";
import { JPathProvider, JsonDoc } from "../json/jpath";
import { ValuePromise } from "../value-promise";
import { JsonResponse } from "../json/jsonresponse";
import { ScenarioType } from "../scenario-types";
export declare class FfprobeResponse extends JsonResponse implements iResponse, JPathProvider {
    jsonDoc: JsonDoc | undefined;
    get responseTypeName(): string;
    get responseType(): ScenarioType;
    get jsonBody(): iValue;
    init(httpResponse: HttpResponse): void;
    find: (path: string) => ValuePromise;
    findAll: (path: string) => Promise<iValue[]>;
}
