/**
 * The distribution of pricing days.
 * - Tag: 41214
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamPricingDayDistribution: Readonly<{
    /** All */
    readonly All: 0;
    /** First */
    readonly First: 1;
    /** Last */
    readonly Last: 2;
    /** Penultimate */
    readonly Penultimate: 3;
}>;
export type PaymentStreamPricingDayDistribution = (typeof PaymentStreamPricingDayDistribution)[keyof typeof PaymentStreamPricingDayDistribution];
