/** * Get Unix timestamp for a time in the future since now, after `duration`. * @param {number} duration Duration in second. * @returns {number} Unix timestamp of the future time. */ export default function timestampFromNow(duration: number): number;