/**
 * Identifies the message transaction type.
 * - Tag: 2804
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PayReportTransType: Readonly<{
    /** New */
    readonly New: 0;
    /** Replace */
    readonly Replace: 1;
    /** Status
        An unsolicited message reporting the current progress status of the payment. */
    readonly Status: 2;
}>;
export type PayReportTransType = (typeof PayReportTransType)[keyof typeof PayReportTransType];
