import type * as Pinnacle from "../index.mjs"; /** * Time picker. `min`/`max` accept `HH:MM` (24-hour). */ export interface TimeField extends Pinnacle.FieldBase { /** Ghost text shown inside the input while it's empty. */ placeholder?: string; /** Earliest selectable time as `HH:MM` (24-hour). */ min?: string; /** Latest selectable time as `HH:MM` (24-hour). */ max?: string; }