/**
 * Type for capturing a specific day.
 * @author Benedikt Arnarsson
 */
type MMDDYY = {
    year: number;
    month: number;
    day: number;
};
export default MMDDYY;
