/**
 * @module weekdays
 * @description A list of weekdays
 */
export declare const weekdays: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
export declare type Weekdays = (typeof weekdays)[number];
