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