export declare class PaymentCancelResponse {
    /**
    * The merchant account that is used to process the payment.
    */
    "merchantAccount": string;
    /**
    * The [`pspReference`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments#responses-200-pspReference) of the payment to cancel.
    */
    "paymentPspReference": string;
    /**
    * Adyen\'s 16-character reference associated with the cancel request.
    */
    "pspReference": string;
    /**
    * Your reference for the cancel request.
    */
    "reference"?: string;
    /**
    * The status of your request. This will always have the value **received**.
    */
    "status": PaymentCancelResponse.StatusEnum;
    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 PaymentCancelResponse {
    enum StatusEnum {
        Received = "received"
    }
}
