/**
 * Identifies status of the request being responded to.
 * - Tag: 2813
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PayRequestStatus: Readonly<{
    /** Received, not yet processed */
    readonly Received: 0;
    /** Accepted */
    readonly Accepted: 1;
    /** Rejected */
    readonly Rejected: 2;
    /** Disputed
        Used when there is some type of mismatch that can be resolved. */
    readonly Disputed: 3;
}>;
export type PayRequestStatus = (typeof PayRequestStatus)[keyof typeof PayRequestStatus];
