/**
 * The relationship between Registration parties.
 * - Tag: 517
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const OwnershipType: Readonly<{
    /** Joint Investors */
    readonly JointInvestors: "J";
    /** Tenants in Common */
    readonly TenantsInCommon: "T";
    /** Joint Trustees */
    readonly JointTrustees: "2";
}>;
export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];
