import { MaybeDateInput } from './types.js'; /** * Apply a given offset to a date, returning a new date with the offset * applied by adding or subtracting the given number of seconds. * @param [dateInput] - The date to apply the offset to. (default: current time) * @param [offset] - The offset to apply in the +-HHmm, +-HH:mm, +-HHmmss, or +-HH:mm:ss format. */ declare function applyOffset(dateInput?: MaybeDateInput, offset?: string): Date; export { applyOffset };