import { StoredValueAccountStatus } from "./storedValueAccountStatus";
import { StoredValueTransactionType } from "./storedValueTransactionType";
import { TransactionIDType } from "./transactionIDType";
/**
* For each stored value card loaded or reloaded, in the StoredValue response message. Result of loading/reloading a stored value card.
*/
export declare class StoredValueResult {
    "StoredValueTransactionType": StoredValueTransactionType;
    /**
    * Product code of item purchased with the transaction. Copy.
    */
    "ProductCode"?: number;
    /**
    * Standard product code of item purchased with the transaction. Copy.
    */
    "EanUpc"?: number;
    /**
    * Total amount of the item line.
    */
    "ItemAmount"?: number;
    /**
    * Currency of a monetary amount. Copy.
    */
    "Currency"?: string;
    "StoredValueAccountStatus"?: StoredValueAccountStatus | null;
    "HostTransactionID"?: TransactionIDType | 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();
}
export declare namespace StoredValueResult {
}
