/**
 * Identifies the form of delivery.
 * - Tag: 668
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DeliveryForm: Readonly<{
    /** Book Entry (default) */
    readonly BookEntry: 1;
    /** Bearer */
    readonly Bearer: 2;
}>;
export type DeliveryForm = (typeof DeliveryForm)[keyof typeof DeliveryForm];
