/**
 * Code to represent the status type.
 * - Tag: 429
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ListStatusType: Readonly<{
    /** Ack */
    readonly Ack: 1;
    /** Response */
    readonly Response: 2;
    /** Timed */
    readonly Timed: 3;
    /** Exec Started */
    readonly ExecStarted: 4;
    /** All Done */
    readonly AllDone: 5;
    /** Alert */
    readonly Alert: 6;
}>;
export type ListStatusType = (typeof ListStatusType)[keyof typeof ListStatusType];
