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