import { DisplayOutput } from "./displayOutput";
import { MessageReference } from "./messageReference";
/**
* Body of the Abort Request message. It conveys Information requested for identification of the message request carrying the transaction to abort. A message to display on the CustomerError Device could be sent by the Sale System (DisplayOutput).
*/
export declare class AbortRequest {
    "MessageReference": MessageReference;
    /**
    * Reason of aborting a transaction.
    */
    "AbortReason": string;
    "DisplayOutput"?: DisplayOutput | null;
    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();
}
