import { DateInput } from './types.js'; /** * Adds the specified number of years to a given date input, returning a new Date object. * * A negative number of years can be passed to subtract years. */ declare function addYears(date: DateInput, years: number): Date; export { addYears };