import { CheckoutForwardResponseFromUrl } from "./checkoutForwardResponseFromUrl";
export declare class CheckoutForwardResponse {
    /**
    * Merchant defined payment reference.
    */
    "merchantReference"?: string;
    /**
    * Adyen\'s 16-character reference associated with the transaction/request. This value is globally unique. Use this reference when you communicate with us about this request.
    */
    "pspReference"?: string;
    "response": CheckoutForwardResponseFromUrl;
    /**
    * The unique identifier of the token.
    */
    "storedPaymentMethodId"?: string;
    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();
}
