/**
 * Status of Collateral Inquiry
 * - Tag: 945
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CollInquiryStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Accepted With Warnings */
    readonly AcceptedWithWarnings: 1;
    /** Completed */
    readonly Completed: 2;
    /** Completed With Warnings */
    readonly CompletedWithWarnings: 3;
    /** Rejected */
    readonly Rejected: 4;
}>;
export type CollInquiryStatus = (typeof CollInquiryStatus)[keyof typeof CollInquiryStatus];
