/**
 * Result returned in response to Collateral Inquiry
    4000+ Reserved and available for bi-laterally agreed upon user-defined values
 * - Tag: 946
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CollInquiryResult: Readonly<{
    /** Successful (default) */
    readonly Successful: 0;
    /** Invalid or unknown instrument */
    readonly InvalidOrUnknownInstrument: 1;
    /** Invalid or unknown collateral type */
    readonly InvalidOrUnknownCollateralType: 2;
    /** Invalid Parties */
    readonly InvalidParties: 3;
    /** Invalid Transport Type requested */
    readonly InvalidTransportTypeRequested: 4;
    /** Invalid Destination requested */
    readonly InvalidDestinationRequested: 5;
    /** No collateral found for the trade specified */
    readonly NoCollateralFoundForTheTradeSpecified: 6;
    /** No collateral found for the order specified */
    readonly NoCollateralFoundForTheOrderSpecified: 7;
    /** Collateral inquiry type not supported */
    readonly CollateralInquiryTypeNotSupported: 8;
    /** Unauthorized for collateral inquiry */
    readonly UnauthorizedForCollateralInquiry: 9;
    /** Other (further information in Text (58) field) */
    readonly Other: 99;
}>;
export type CollInquiryResult = (typeof CollInquiryResult)[keyof typeof CollInquiryResult];
