import type * as Pinnacle from "../index.mjs"; /** * Local-datetime picker. `min`/`max` accept ISO 8601 timestamps. */ export interface DatetimeField extends Pinnacle.FieldBase { /** Ghost text shown inside the input while it's empty. */ placeholder?: string; /** Earliest selectable instant as an ISO 8601 timestamp. */ min?: string; /** Latest selectable instant as an ISO 8601 timestamp. */ max?: string; }