import { DateInput } from './types.cjs'; /** * Adds the specified number of seconds to a given date input, returning a new Date object. * * A negative number of seconds can be passed to subtract seconds. */ declare function addSeconds(date: DateInput, seconds: number): Date; export { addSeconds };