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