/**
 * Status of Request for Positions
 * - Tag: 729
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PosReqStatus: Readonly<{
    /** Completed */
    readonly Completed: 0;
    /** Completed With Warnings */
    readonly CompletedWithWarnings: 1;
    /** Rejected */
    readonly Rejected: 2;
}>;
export type PosReqStatus = (typeof PosReqStatus)[keyof typeof PosReqStatus];
