/** * Returns the total number of months of the `Duration`. * @param duration The `Duration` to get the total number of months of. * * @example * ```typescript * asMonths(months(2)); // => 2 * asMonths(months(2) + weeks(3)); // => 2.689952565761104 * ``` */ declare const asMonths: (duration: bigint) => number; export default asMonths; //# sourceMappingURL=asMonths.d.ts.map