import { ProtoResponse } from "./response"; import { iValue } from "./interfaces"; export declare abstract class DOMResponse extends ProtoResponse { abstract find(path: string): Promise; abstract findAll(path: string): Promise; findAllHavingText(selector: string, searchForText: string | RegExp): Promise; findHavingText(selector: string, searchForText: string | RegExp): Promise; }