/**
 * Stub type.
 * - Tag: 40873
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStubType: Readonly<{
    /** Initial */
    readonly Initial: 0;
    /** Final */
    readonly Final: 1;
    /** Compounding initial */
    readonly CompoundingInitial: 2;
    /** Compounding final */
    readonly CompoundingFinal: 3;
}>;
export type PaymentStubType = (typeof PaymentStubType)[keyof typeof PaymentStubType];
