import { DOMElement } from "./domelement";
import { iResponse, ResponseType } from "./response";
import { BrowserResponse } from './browserresponse';
export declare class ExtJSResponse extends BrowserResponse implements iResponse {
    readonly typeName: string;
    readonly type: ResponseType;
    find(path: string): Promise<DOMElement | null>;
    findAll(path: string): Promise<DOMElement[]>;
}
