/**
 * Reject reason code for rejecting the collateral report.
 * - Tag: 2487
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CollRptRejectReason: Readonly<{
    /** Unknown trade or transaction */
    readonly UnknownTrade: 0;
    /** Unknown or invalid instrument */
    readonly UnknownInstrument: 1;
    /** Unknown or invalid counterparty */
    readonly UnknownCounterparty: 2;
    /** Unknown or invalid position */
    readonly UnknownPosition: 3;
    /** Unacceptable or invalid type of collateral */
    readonly UnacceptableCollateral: 4;
    /** Other */
    readonly Other: 99;
}>;
export type CollRptRejectReason = (typeof CollRptRejectReason)[keyof typeof CollRptRejectReason];
