/** * Extracts the years, months, and days from a given date of birth. * * This function takes a Date object and returns an object with the years, * months, and days properties. * * @param {Date} dateOfBirth - The date of birth to extract the years, months, and days from. * @returns {object} An object with the years, months, and days properties. */ export declare function ageFromDOB(dateOfBirth: Date | string): { years: number; months: number; days: number; };