/**
 * Identifies type of settlement
 * - Tag: 172
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SettlDeliveryType: Readonly<{
    /** "Versus. Payment": Deliver (if Sell) or Receive (if Buy) vs. (Against) Payment */
    readonly Versus: 0;
    /** "Free": Deliver (if Sell) or Receive (if Buy) Free */
    readonly Free: 1;
    /** Tri-Party */
    readonly TriParty: 2;
    /** Hold In Custody */
    readonly HoldInCustody: 3;
}>;
