/// import { HttpResponse } from "./httpresponse"; import { DOMResponse } from "./domresponse"; import { iResponse, iValue } from "./interfaces"; import { ResponseType } from "./enums"; export declare class HtmlResponse extends DOMResponse implements iResponse { get responseTypeName(): string; get responseType(): ResponseType; init(httpResponse: HttpResponse): void; getRoot(): CheerioStatic; evaluate(context: any, callback: Function): Promise; find(path: string): Promise; findAll(path: string): Promise; waitForHidden(selector: string, timeout?: number): Promise; waitForVisible(selector: string, timeout?: number): Promise; waitForExists(selector: string, timeout?: number): Promise; type(selector: string, textToType: string, opts?: any): Promise; clear(selector: string): Promise; }