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