/**
 * Indicates type of fee being assessed of the customer for trade executions at an exchange. Applicable for futures markets only at this time.
    (Values source CBOT, CME, NYBOT, and NYMEX):
 * - Tag: 635
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ClearingFeeIndicator: Readonly<{
    /** 1st year delegate trading for own account */
    readonly FirstYearDelegate: "1";
    /** 2nd year delegate trading for own account */
    readonly SecondYearDelegate: "2";
    /** 3rd year delegate trading for own account */
    readonly ThirdYearDelegate: "3";
    /** 4th year delegate trading for own account */
    readonly FourthYearDelegate: "4";
    /** 5th year delegate trading for own account */
    readonly FifthYearDelegate: "5";
    /** 6th year delegate trading for own account */
    readonly SixthYearDelegate: "9";
    /** CBOE Member */
    readonly CBOEMember: "B";
    /** Non-member and Customer */
    readonly NonMemberAndCustomer: "C";
    /** Equity Member and Clearing Member */
    readonly EquityMemberAndClearingMember: "E";
    /** Full and Associate Member trading for own account and as floor brokers */
    readonly FullAndAssociateMember: "F";
    /** 106.H and 106.J firms */
    readonly Firms106HAnd106J: "H";
    /** GIM, IDEM and COM Membership Interest Holders */
    readonly GIM: "I";
    /** Lessee 106.F Employees */
    readonly Lessee106FEmployees: "L";
    /** All other ownership types */
    readonly AllOtherOwnershipTypes: "M";
}>;
export type ClearingFeeIndicator = (typeof ClearingFeeIndicator)[keyof typeof ClearingFeeIndicator];
