declare const WEEKDAYS: readonly [0, 1, 2, 3, 4, 5, 6]; export type Weekdays = typeof WEEKDAYS; export type Weekday = Weekdays[number]; type UseWeekdays = { weekdays: Weekdays; weekdaysObject: Record; }; export declare const useWeekdays: () => UseWeekdays; export {};