import { OriginalPOITransaction } from "./originalPOITransaction";
import { ReversalReason } from "./reversalReason";
import { SaleData } from "./saleData";
/**
* It conveys Information related to the reversal of a previous payment or a loyalty transaction. Content of the Reversal Request message.
*/
export declare class ReversalRequest {
    "SaleData"?: SaleData | null;
    "OriginalPOITransaction": OriginalPOITransaction;
    /**
    * Amount of the payment or loyalty to reverse. ReversedAmount is implicitly equal to the AuthorizedAmount if absent.
    */
    "ReversedAmount"?: number;
    "ReversalReason": ReversalReason;
    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 ReversalRequest {
}
