/**
 * Specifies the action to be taken for the given order.
 * - Tag: 2429
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const OrderEntryAction: Readonly<{
    /** Add */
    readonly Add: "1";
    /** Modify */
    readonly Modify: "2";
    /** Delete / Cancel */
    readonly Delete: "3";
    /** Suspend */
    readonly Suspend: "4";
    /** Release */
    readonly Release: "5";
}>;
export type OrderEntryAction = (typeof OrderEntryAction)[keyof typeof OrderEntryAction];
