import type { ValuesOf } from '../../Types/ValuesOf'; /** * `DayOfWeek` - The `DayOfWeek` object is used to describe the different days of the week. * * @public */ export declare const DayOfWeek: { readonly Sunday: 0; readonly Monday: 1; readonly Tuesday: 2; readonly Wednesday: 3; readonly Thursday: 4; readonly Friday: 5; readonly Saturday: 6; }; /** * @public */ export type DayOfWeek = ValuesOf; //# sourceMappingURL=DayOfWeek.d.ts.map