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