/**
 * Code to represent how the multileg price is to be interpreted when applied to the legs.
    (See Volume : "Glossary" for further value definitions)
 * - Tag: 1378
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MultilegPriceMethod: Readonly<{
    /** Net Price */
    readonly NetPrice: 0;
    /** Reversed Net Price */
    readonly ReversedNetPrice: 1;
    /** Yield Difference */
    readonly YieldDifference: 2;
    /** Individual */
    readonly Individual: 3;
    /** Contract Weighted Average Price */
    readonly ContractWeightedAveragePrice: 4;
    /** Multiplied Price */
    readonly MultipliedPrice: 5;
}>;
export type MultilegPriceMethod = (typeof MultilegPriceMethod)[keyof typeof MultilegPriceMethod];
