/** * Returns the `Date` after the given `date` by the `Duration`. * @param duration The `Duration` to get the `Date` after the given `date` by. * @param date The `Date` to get the `Date` after by the `Duration`. * * @example * ```typescript * const date = new Date(); * console.log(date); // 2023-09-01T00:00:00.000Z * after(years(2), date); // => 2025-09-01T00:00:00.000Z * after(years(2) + months(3), date); // => 2025-12-01T00:00:00.000Z * ``` */ declare const after: (duration: bigint, date: number | Date) => Date; export default after; //# sourceMappingURL=after.d.ts.map