import MMDDYY from '../types/MMDDYY';
/**
 * Parse a string to MMDDYY.
 * @author Benedikt Arnarsson
 * @param str inputted string to parse.
 * @returns object with `year`, `month`, and `day` properties.
 */
declare const parseMMDDYY: (str: string) => MMDDYY;
export default parseMMDDYY;
