import { MaybeDateInput } from './types.js'; /** * Inverts the offset and applies it to the given date, returning a new date. * @param [dateInput] - The date to remove the offset from. (default: current time) * @param [offset] - The offset to remove in the +-HHmm or +-HH:mm format. */ declare function removeOffset(dateInput?: MaybeDateInput, offset?: string): Date; export { removeOffset };