import MMDDYY from '../../../shared/types/MMDDYY';
/**
 * Extract a description of a date, relative to the current week-day.
 * @author Benedikt Arnarsson
 * @param date the date that info is being displayed for.
 * @returns a string describing the day, relative to the current day.
 */
declare const dateToDescription: (date: MMDDYY) => string;
export default dateToDescription;
