/**
 * If optional early termination is not available to both parties then this component identifies the buyer of the option through its side of the trade.
 * - Tag: 40099
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ProvisionOptionSinglePartyBuyerSide: Readonly<{
    /** Buy */
    readonly Buy: 1;
    /** Sell */
    readonly Sell: 2;
}>;
export type ProvisionOptionSinglePartyBuyerSide = (typeof ProvisionOptionSinglePartyBuyerSide)[keyof typeof ProvisionOptionSinglePartyBuyerSide];
