/**
 * Describes whether peg is static or floats
 * - Tag: 835
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PegMoveType: Readonly<{
    /** Floating (default) */
    readonly Floating: 0;
    /** Fixed */
    readonly Fixed: 1;
}>;
export type PegMoveType = (typeof PegMoveType)[keyof typeof PegMoveType];
