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