import type * as Pinnacle from "../index.js"; /** * Phone input. Client formats the value as the user types ("(555) 555-1212") and normalizes to E.164 ("+15555551212") before submission. */ export interface PhoneField extends Pinnacle.FieldBase { /** Ghost text shown inside the input while it's empty. */ placeholder?: string; }