/**
 * Used to specify the day of the week in which the reset occurs for payments that reset on a weekly basis.
 * - Tag: 40766
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PaymentStreamResetWeeklyRollConvention: Readonly<{
    /** Monday */
    readonly Monday: "MON";
    /** Tuesday */
    readonly Tuesday: "TUE";
    /** Wednesday */
    readonly Wednesday: "WED";
    /** Thursday */
    readonly Thursday: "THU";
    /** Friday */
    readonly Friday: "FRI";
    /** Saturday */
    readonly Saturday: "SAT";
    /** Sunday */
    readonly Sunday: "SUN";
}>;
export type PaymentStreamResetWeeklyRollConvention = (typeof PaymentStreamResetWeeklyRollConvention)[keyof typeof PaymentStreamResetWeeklyRollConvention];
