export declare const DayOfWeek: { readonly Sun: 0; readonly Mon: 1; readonly Tue: 2; readonly Wed: 3; readonly Thu: 4; readonly Fri: 5; readonly Sat: 6; }; export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]; export declare const DateFormat: { readonly Numeral: "P"; readonly Text: "PP"; }; export type DateFormat = (typeof DateFormat)[keyof typeof DateFormat];