/**
 * Specifies how the trade is collateralized.
    In the context of Dodd-Frank, all values shown except for 4 (Net exposure) apply.
    In the context of ESMA EU SFTR reporting only the values 1 (Uncollateralized), 3 (Fully collateralized) and 4 (Net exposure) apply.
 * - Tag: 1936
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeCollateralization: Readonly<{
    /** Uncollateralized */
    readonly Uncollateralized: 0;
    /** Partially collateralized */
    readonly PartiallyCollateralized: 1;
    /** One-way collaterallization */
    readonly OneWayCollaterallization: 2;
    /** Fully collateralized */
    readonly FullyCollateralized: 3;
    /** Net exposure
        Indication of whether the collateral has been provided for a net exposure, rather than for a single transaction. */
    readonly NetExposure: 4;
}>;
export type TradeCollateralization = (typeof TradeCollateralization)[keyof typeof TradeCollateralization];
