/**
 * Data point's matching type.
 * - Tag: 2782
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MatchingDataPointIndicator: Readonly<{
    /** Mandatory */
    readonly Mandatory: 1;
    /** Optional */
    readonly Optional: 2;
}>;
export type MatchingDataPointIndicator = (typeof MatchingDataPointIndicator)[keyof typeof MatchingDataPointIndicator];
