import type { ComPlainDate } from "../PlainDate.js"; /** * Get a function curried with a plain-date, from which to get the number of * crossings over quarters 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 differenceInQuarters(from: ComPlainDate): (to: ComPlainDate) => number; //# sourceMappingURL=differenceInQuarters.d.ts.map