import { DocumentQualifier } from "./documentQualifier";
import { OutputContent } from "./outputContent";
import { ResponseMode } from "./responseMode";
export declare class PrintOutput {
    "DocumentQualifier": DocumentQualifier;
    "ResponseMode": ResponseMode;
    /**
    * Type of the print integrated in other prints. Allows a separated printing (paper cut if available), or integration with the sale receipt or other print. If the printing is integrated, the response is always immediate, even if the `ResponseMode` is set to `PrintEnd`.
    */
    "IntegratedPrintFlag"?: boolean;
    /**
    * Indicates that the cardholder payment receipt requires a physical signature by the Customer.
    */
    "RequiredSignatureFlag"?: boolean;
    "OutputContent": OutputContent;
    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 PrintOutput {
}
