export declare class ConfirmationTrackingData {
    /**
    * The status of the transfer.  Possible values:   - **credited**: the funds are credited to your user\'s transfer instrument or bank account.- **accepted**: the request is accepted by the integration.
    */
    "status": ConfirmationTrackingData.StatusEnum;
    /**
    * The type of the tracking event.  Possible values:   - **confirmation**: the transfer passed Adyen\'s internal review.
    */
    "type": ConfirmationTrackingData.TypeEnum;
    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 ConfirmationTrackingData {
    enum StatusEnum {
        Credited = "credited",
        Accepted = "accepted"
    }
    enum TypeEnum {
        Confirmation = "confirmation"
    }
}
