/**
 * Used to identify whether the order initiator is an aggressor or not in the trade.
 * - Tag: 1057
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AggressorIndicator: Readonly<{
    /** Order initiator is aggressor */
    readonly OrderInitiatorIsAggressor: "Y";
    /** Order initiator is passive */
    readonly OrderInitiatorIsPassive: "N";
}>;
export type AggressorIndicator = (typeof AggressorIndicator)[keyof typeof AggressorIndicator];
