import { ErrorCondition } from "./errorCondition";
import { Result } from "./result";
/**
* Result of a message request processing. If Result is Success, `ErrorCondition` is absent or not used in the processing of the message. In the other cases, the `ErrorCondition` has to be present and can refine the processing of the message response. `AdditionalResponse` gives more information about the success or the failure of the message request processing, for logging without real time involvements.
*/
export declare class Response {
    "Result": Result;
    "ErrorCondition"?: ErrorCondition;
    /**
    * Additional information related to processing status of a message request. If present, the POI logs it for further examination.
    */
    "AdditionalResponse"?: string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace Response {
}
