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