import { ProtoResponse } from "./response"; import { iResponse } from "./interfaces"; import { ResponseType } from "./enums"; import { HttpResponse } from './httpresponse'; import { iValue } from '.'; export declare class ResourceResponse extends ProtoResponse implements iResponse { get responseType(): ResponseType; get responseTypeName(): string; init(httpResponse: HttpResponse): void; evaluate(context: any, callback: Function): Promise; find(path: string): Promise; findAll(path: string): Promise; }