/**
 * Used to indicate the status of a post-trade payment.
 * - Tag: 2823
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PostTradePaymentStatus: Readonly<{
    /** New
        Payment is awaiting confirmation from the recipient. */
    readonly New: 0;
    /** Initiated
        Payment is confirmed by the recipient and has been scheduled. */
    readonly Initiated: 1;
    /** Pending
        Payment has been instructed to the payment service but status is unknown. */
    readonly Pending: 2;
    /** Confirmed
        Payment is complete and confirmed by the payment service. */
    readonly Confirmed: 3;
    /** Rejected
        Payment was rejected by the payment service. */
    readonly Rejected: 4;
}>;
export type PostTradePaymentStatus = (typeof PostTradePaymentStatus)[keyof typeof PostTradePaymentStatus];
