/**
 * Identifies the type of quote to be used.
 * - Tag: 40111
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ProvisionCashSettlQuoteType: Readonly<{
    /** Bid */
    readonly Bid: 0;
    /** Mid */
    readonly Mid: 1;
    /** Offer */
    readonly Offer: 2;
    readonly ExercisingPartyPays: 3;
}>;
