import { HostStatus } from "./hostStatus";
import { POIStatus } from "./pOIStatus";
import { Response } from "./response";
/**
* It conveys the result of the requested diagnosis and a possible message to display on a logical device. Content of the Diagnosis Response message.
*/
export declare class DiagnosisResponse {
    "Response": Response;
    "POIStatus"?: POIStatus | null;
    /**
    * State of a Host.
    */
    "HostStatus"?: Array<HostStatus>;
    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();
}
