import { iResponse } from "../interfaces";
import { ScenarioType } from "../scenario-types";
import { MediaResponse } from "./mediaresponse";
export declare class VideoResponse extends MediaResponse implements iResponse {
    get responseTypeName(): string;
    get responseType(): ScenarioType;
    protected _mimePattern: RegExp;
}
