import { ExtJsComponent } from "./extjs-component"; import { iResponse } from "../interfaces/iresponse"; import { FindOptions, FindAllOptions } from "../interfaces/find-options"; import { PuppeteerResponse } from "./puppeteer-response"; import { EvaluateFn } from "puppeteer-core"; import { ValuePromise } from "../value-promise"; import { ExtJsScenario } from "./extjs-scenario"; import { iValue } from "../interfaces/ivalue"; export declare class ExtJSResponse extends PuppeteerResponse implements iResponse { constructor(scenario: ExtJsScenario); findXPath(xPath: string): ValuePromise; findAllXPath(xPath: string): Promise; waitForExists(path: string, a?: number | string | RegExp, b?: number): ValuePromise; type(selector: string, textToType: string, opts?: any): ValuePromise; clear(selector: string): ValuePromise; getComponentById(id: string): Promise; protected _getComponent(js: EvaluateFn, name: string, path: string): Promise | ExtJsComponent>; private _injectScript; find(selector: string, a?: string | RegExp | FindOptions, b?: FindOptions): ValuePromise; findAll(selector: string, a?: string | RegExp | FindAllOptions, b?: FindAllOptions): Promise; selectOption(selector: string, value: string | string[]): ValuePromise; private _getComponentOrElementFromHandle; private _getComponentFromElementHandle; private _query; }