import { LoyaltyAccount } from "./loyaltyAccount";
import { LoyaltyAcquirerData } from "./loyaltyAcquirerData";
/**
* Data related to the result of a processed loyalty transaction. In the Message Response, the result of each loyalty brand transaction.
*/
export declare class LoyaltyResult {
    "LoyaltyAccount": LoyaltyAccount;
    /**
    * Balance of an account. If known (provided by the card or an external host).
    */
    "CurrentBalance"?: number;
    "LoyaltyAcquirerData"?: LoyaltyAcquirerData | 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();
}
