/**
 * Status of Position Maintenance Request
 * - Tag: 722
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PosMaintStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Accepted With Warnings */
    readonly AcceptedWithWarnings: 1;
    /** Rejected */
    readonly Rejected: 2;
    /** Completed */
    readonly Completed: 3;
    /** Completed With Warnings */
    readonly CompletedWithWarnings: 4;
}>;
export type PosMaintStatus = (typeof PosMaintStatus)[keyof typeof PosMaintStatus];
