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