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