/**
 * Indicate whether a trade is eligible to be reported to more than one regulatory jurisdictions, e.g. due to overlapping reporting rules that require reporting to different jurisdictions.
 * - Tag: 2963
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MultiJurisdictionReportingIndicator: Readonly<{
    /** Trade not eligible for multi-jurisdiction reporting */
    readonly NotMultiJrsdctnEligible: 0;
    /** Trade eligible for multi-jurisdiction reporting */
    readonly MultiJrsdctnEligible: 1;
}>;
export type MultiJurisdictionReportingIndicator = (typeof MultiJurisdictionReportingIndicator)[keyof typeof MultiJurisdictionReportingIndicator];
