/**
 * Optional indication whether stub is shorter or longer than the regular swap period.
 * - Tag: 40874
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStubLength: Readonly<{
    /** Short */
    readonly Short: 0;
    /** Long */
    readonly Long: 1;
}>;
export type PaymentStubLength = (typeof PaymentStubLength)[keyof typeof PaymentStubLength];
