/**
 * Get a date N days in the future.
 *
 * @param days How many days from now?
 * @param [now=new Date()] Starting when? (default: now).
 * @returns New date.
 */
export declare function daysFromNow(days: number, now?: Date): Date;
