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