import { TransactionDescriptionResponseInfo } from "./transactionDescriptionResponseInfo";
export declare class JCBResponseInfo {
    /**
    * MID (Merchant ID) number.
    */
    "midNumber"?: string;
    /**
    * Indicates whether the JCB Merchant ID is reused from a previously setup JCB payment method.
    */
    "reuseMidNumber"?: boolean;
    /**
    * Specifies the service level (settlement type) of this payment method.
    */
    "serviceLevel"?: string;
    "transactionDescription"?: TransactionDescriptionResponseInfo | null;
    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();
}
