import { iResponse, GenericResponse, NormalizedResponse, ResponseType } from "./response";
import { Scenario } from "./scenario";
export declare class VideoResource extends GenericResponse implements iResponse {
    readonly typeName: string;
    readonly type: ResponseType;
    constructor(scenario: Scenario, response: NormalizedResponse);
    evaluate(context: any, callback: Function): Promise<any>;
    asyncSelect(path: string): Promise<any | null>;
    asyncSelectAll(path: string): Promise<any[]>;
}
