/**
 * The day of the week on which pricing takes place.
 * - Tag: 41228
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamPricingDayOfWeek: Readonly<{
    /** Every day (the default if not specified) */
    readonly EveryDay: 0;
    /** Monday */
    readonly Monday: 1;
    /** Tuesday */
    readonly Tuesday: 2;
    /** Wednesday */
    readonly Wednesday: 3;
    /** Thursday */
    readonly Thursday: 4;
    /** Friday */
    readonly Friday: 5;
    /** Saturday */
    readonly Saturday: 6;
    /** Sunday */
    readonly Sunday: 7;
}>;
export type PaymentStreamPricingDayOfWeek = (typeof PaymentStreamPricingDayOfWeek)[keyof typeof PaymentStreamPricingDayOfWeek];
