import { CountryCode } from '../phone-input/types'; export interface PhoneDisplayMetadata { phone: string | null | undefined; countries?: CountryCode[]; defaultCountry?: string; country?: CountryCode | null; mode?: 'text' | 'link' | 'button'; ariaLabel?: string; cssClass?: string; }