/**
 * Method used for negotiation of contract price.
 * - Tag: 1740
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradePriceNegotiationMethod: Readonly<{
    /** Percent of par */
    readonly PercentPar: 0;
    /** Deal spread */
    readonly DealSpread: 1;
    /** Upfront points */
    readonly UpfrontPnts: 2;
    /** Upfront amount */
    readonly UpfrontAmt: 3;
    /** Percent of par and upfront amount */
    readonly ParUpfrontAmt: 4;
    /** Deal spread and upfront amount */
    readonly SpreadUpfrontAmt: 5;
    /** Upfront points and upfront amount */
    readonly UpfrontPntsAmt: 6;
}>;
export type TradePriceNegotiationMethod = (typeof TradePriceNegotiationMethod)[keyof typeof TradePriceNegotiationMethod];
