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