/**
 * Subscription Request Type
 * - Tag: 263
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SubscriptionRequestType: Readonly<{
    /** Snapshot */
    readonly Snapshot: "0";
    /** Snapshot + Updates (Subscribe) */
    readonly SnapshotAndUpdates: "1";
    /** Disable previous Snapshot + Update Request (Unsubscribe) */
    readonly DisablePreviousSnapshot: "2";
}>;
export type SubscriptionRequestType = (typeof SubscriptionRequestType)[keyof typeof SubscriptionRequestType];
