/**
 * Designates the account type to be used for the order when submitted to clearing.
 * - Tag: 1816
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ClearingAccountType: Readonly<{
    /** Customer */
    readonly Customer: 1;
    /** Firm */
    readonly Firm: 2;
    /** Market maker */
    readonly MarketMaker: 3;
}>;
export type ClearingAccountType = (typeof ClearingAccountType)[keyof typeof ClearingAccountType];
