import { HttpResponse } from "../http/http-response";
import { iResponse } from "../interfaces/iresponse";
import { XmlResponse } from "./xml-response";
export declare class AtomResponse extends XmlResponse implements iResponse {
    init(httpResponse: HttpResponse): void;
    private hasRequiredAtomFields;
}
