/**
 * Specifies the type of Market Data update.
 * - Tag: 265
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MDUpdateType: Readonly<{
    /** Full refresh */
    readonly FullRefresh: 0;
    /** Incremental refresh */
    readonly IncrementalRefresh: 1;
}>;
export type MDUpdateType = (typeof MDUpdateType)[keyof typeof MDUpdateType];
