/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Set of elements to fully identify a proprietary bank transaction code. */
export interface ProprietaryBankTransactionCode {
    /** Proprietary bank transaction code to identify the underlying transaction. */
    code: string;
    /** Identification of the issuer of the proprietary bank transaction code. */
    issuer?: string;
}
export declare const proprietaryBankTransactionCodeSchema: Schema<ProprietaryBankTransactionCode>;
