/**
 * Specifies the party's or parties' intention to clear the trade.
 * - Tag: 1924
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ClearingIntention: Readonly<{
    /** Do not intend to clear */
    readonly DoNotIntendToClear: 0;
    /** Intend to clear */
    readonly IntendToClear: 1;
}>;
export type ClearingIntention = (typeof ClearingIntention)[keyof typeof ClearingIntention];
