//#region src/date/addMonths.d.ts /** * Adds the specified number of months to the given date. * * @param date - The date to modify * @param amount - The number of months to add (can be negative) * @returns A new Date object with the months added * * @example * addMonths(new Date('2024-01-15'), 3) // => Date object for 2024-04-15 * addMonths(new Date('2024-01-15'), -2) // => Date object for 2023-11-15 */ declare function addMonths(date: Date, amount: number): Date; //#endregion export { addMonths }; //# sourceMappingURL=addMonths.d.cts.map