export interface IPhoneInformation {
  name: string;
  dialCode: string;
  isoCode: string;
  flag: string;
  type: string;
  carrier?: string;
}
