/**
 * Type of swap stream.
 * - Tag: 40050
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamType: Readonly<{
    /** Payment / cash settlement */
    readonly PaymentCashSettlement: 0;
    /** Physical delivery */
    readonly PhysicalDelivery: 1;
}>;
export type StreamType = (typeof StreamType)[keyof typeof StreamType];
