/**
 * Result of Position Maintenance Request.
 * - Tag: 723
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PosMaintResult: Readonly<{
    /** Successful Completion - no warnings or errors */
    readonly SuccessfulCompletion: 0;
    /** Rejected */
    readonly Rejected: 1;
    /** Other */
    readonly Other: 99;
}>;
export type PosMaintResult = (typeof PosMaintResult)[keyof typeof PosMaintResult];
