import { HttpResponse } from "../httpresponse";
import { iResponse } from "../interfaces";
import { XmlResponse } from "./xmlresponse";
import { ScenarioType } from "../scenario-types";
export declare class AtomResponse extends XmlResponse implements iResponse {
    get responseTypeName(): string;
    get responseType(): ScenarioType;
    init(httpResponse: HttpResponse): void;
    private hasRequiredAtomFields;
}
