export declare class AmexResponseInfo {
    /**
    * Merchant ID (MID) number.
    */
    "midNumber"?: string;
    /**
    * Indicates whether the Amex Merchant ID is reused from a previously setup Amex payment method.
    */
    "reuseMidNumber"?: boolean;
    /**
    *  The service level (settlement type) of this payment method. Possible values: * **noContract**: Adyen holds the contract with American Express. * **gatewayContract**: American Express receives the settlement and handles disputes, then pays out to you or your sub-merchant directly. * **paymentDesignatorContract**: Adyen receives the settlement, and handles disputes and payouts.
    */
    "serviceLevel"?: 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();
}
