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; asyncSelect(path: string): Promise; asyncSelectAll(path: string): Promise; }