/**
 * Type of MarginRequirementReport.
 * - Tag: 1638
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MarginReqmtRptType: Readonly<{
    /** Summary */
    readonly Summary: 0;
    /** Detail */
    readonly Detail: 1;
    /** Excess/Deficit */
    readonly ExcessDeficit: 2;
}>;
export type MarginReqmtRptType = (typeof MarginReqmtRptType)[keyof typeof MarginReqmtRptType];
