import type { ComPlainDate } from "../PlainDate.js"; /** * Get a function curried with a plain-date, from which to get the number of * crossings over months between it and other plain-dates. * * @param from A plain-date to calculate the difference from * @returns A curried function that operates on plain-dates */ export declare function differenceInMonths(from: ComPlainDate): (to: ComPlainDate) => number; //# sourceMappingURL=differenceInMonths.d.ts.map