/**
 * Indicates the type of entity who initiated an event, e.g. modification or cancellation of an order or quote.
 * - Tag: 2830
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const EventInitiatorType: Readonly<{
    /** Customer or client */
    readonly CustomerOrClient: "C";
    /** Exchange or execution venue */
    readonly ExchangeOrExecutionVenue: "E";
    /** Firm or broker */
    readonly FirmOrBroker: "F";
}>;
export type EventInitiatorType = (typeof EventInitiatorType)[keyof typeof EventInitiatorType];
