import { DocumentQualifier } from "./documentQualifier";
import { Response } from "./response";
/**
* It conveys the result of the print, parallel to the message request, except if response not required and absent. Content of the Print Response message.
*/
export declare class PrintResponse {
    "DocumentQualifier": DocumentQualifier;
    "Response": Response;
    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 PrintResponse {
}
