export interface RepairerInfo { clientCode: string; manufacturerId: number; companyName: string; address1: string; address2: string; zipCode: string; city: string; phoneNumber: string; countryCode: string; eMailAddress: string; latitude: number; longitude: number; countryLabel: string; atsCode: string; distance: string; walk: string; drive: string; transit: string; content: any; } export type RepairerInfos = RepairerInfo[];