/**
 * Payment settlement style.
 * - Tag: 40227
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentSettlStyle: Readonly<{
    /** Standard */
    readonly Standard: 0;
    /** Net */
    readonly Net: 1;
    /** Standard and net */
    readonly StandardfNet: 2;
}>;
export type PaymentSettlStyle = (typeof PaymentSettlStyle)[keyof typeof PaymentSettlStyle];
