declare global { interface BigInt { /** * Returns the total number of fortnights (2 weeks) of the `Duration`. * * @example * ```typescript * (2).fortnights.asFortnights(); // => 2 * ((2).fortnights + (3).days).asFortnights(); // => 2.2142857142857144 * ``` */ asFortnights(): number; } } export {}; //# sourceMappingURL=asFortnights.d.ts.map