import MMDDYY from '../types/MMDDYY';
/**
 * Create a string representation of an MMDDYY object.
 * @author Benedikt Arnarsson
 * @param mmddyy the inputted object with `year`, `month`, and `day` properties.
 * @returns a string representing the object, of the form YYYY.[M]M.[D]D
 */
declare const toStringMMDDYY: (mmddyy: MMDDYY) => string;
export default toStringMMDDYY;
