import { POIData } from "./pOIData";
import { PaymentReceipt } from "./paymentReceipt";
import { Response } from "./response";
import { SaleData } from "./saleData";
import { StoredValueResult } from "./storedValueResult";
/**
* It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message.
*/
export declare class StoredValueResponse {
    "Response": Response;
    "SaleData": SaleData;
    "POIData": POIData;
    /**
    * Result of loading/reloading a stored value card. If StoredValueResponse.Result is Success or Partial, one entry per StoredValueRequest.StoredValueData loaded or activated.
    */
    "StoredValueResult"?: Array<StoredValueResult>;
    "PaymentReceipt"?: Array<PaymentReceipt>;
    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();
}
