/**
 * Specifies the type of delivery stream.
 * - Tag: 41058
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DeliveryStreamType: Readonly<{
    /** Periodic (default if not specified) */
    readonly Periodic: 0;
    /** Initial */
    readonly Initial: 1;
    /** Single */
    readonly Single: 2;
}>;
export type DeliveryStreamType = (typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];
