import type { ComPlainDate } from "../PlainDate.js"; /** * Get a function curried with a number of months * to add to its plain-date arguments. * * The resulting day-of-month will always be within the expected month, * days will not spill over into the next month. * * @param months The number of months to add or subtract * @returns A curried function that operates on plain-dates */ export declare function addMonths(months: number): (date: T) => T; //# sourceMappingURL=addMonths.d.ts.map