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