/**
 * Identifies status of the payment report.
 * - Tag: 2806
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PayReportStatus: 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 PayReportStatus = (typeof PayReportStatus)[keyof typeof PayReportStatus];
