/**
 * Type of price used to determine upfront payment for swaps contracts.
 * - Tag: 1741
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const UpfrontPriceType: Readonly<{
    /** Percentage (i.e. percent of par) (often called "dollar price" for fixed income) */
    readonly Percentage: 1;
    /** Fixed amount (absolute value) */
    readonly FixedAmount: 3;
}>;
export type UpfrontPriceType = (typeof UpfrontPriceType)[keyof typeof UpfrontPriceType];
