/** * @internal * @module Types */ import { PhoneNumber } from "./types"; export interface ContactInfo { name: string; companyName: string; phoneNumber: PhoneNumber; line1: string; line2?: string; city: string; state: string; country: string; zip: string; } export declare type ContactInfoPartial = Partial;