/** The days of the week. */ export declare const Weekday: { readonly Mon: "MON"; readonly Tue: "TUE"; readonly Wed: "WED"; readonly Thu: "THU"; readonly Fri: "FRI"; readonly Sat: "SAT"; readonly Sun: "SUN"; }; export type Weekday = (typeof Weekday)[keyof typeof Weekday];