import { t as Time } from "./time.types-DCVbClze.js"; //#region src/time/time.d.ts /** Check if a time value has valid ranges. */ declare function isValidTime(time: Time.ITimeValue): boolean; /** Clamp a time value within min/max bounds. */ declare function clampTime(time: Time.ITimeValue, min?: Time.ITimeValue, max?: Time.ITimeValue): Time.ITimeValue; /** Increment or decrement a specific field, wrapping at boundaries. */ declare function incrementField(time: Time.ITimeValue, field: Time.TimeField, delta: number, config?: Pick): Time.ITimeValue; /** Parse a digit string typed by the user into a valid field value. Returns null if invalid. */ declare function parseTimeInput(input: string, field: Time.TimeField, hourCycle: Time.HourCycle): number | null; //#endregion export { parseTimeInput as i, incrementField as n, isValidTime as r, clampTime as t };