declare const checkIfDatePartsMatch: (d1: string | number | Date, d2: string | number | Date) => { year: boolean; month: boolean; date: boolean; }; export default checkIfDatePartsMatch;