/**
 * conveys how the collateral should be/has been applied
 * - Tag: 1043
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CollApplType: Readonly<{
    /** Specific Deposit */
    readonly SpecificDeposit: 0;
    /** General */
    readonly General: 1;
}>;
export type CollApplType = (typeof CollApplType)[keyof typeof CollApplType];
