/**
* Adjust a given date by a given change in duration. The adjustment value uses the exact same syntax
* and logic as Vercel's `ms`.
*
* The conversion is lifted straight from `ms`.
*/exportdeclarefunctionadjustDate(date: Date, adjustment: string): Date | undefined;