/**
 * Describes the format of the PriceMovementValue(1921).
 * - Tag: 1923
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PriceMovementType: Readonly<{
    /** Amount */
    readonly Amount: 0;
    /** Percentage */
    readonly Percentage: 1;
}>;
export type PriceMovementType = (typeof PriceMovementType)[keyof typeof PriceMovementType];
