import { Company } from "./Company"; export interface Address { id: number; street: string; city: string; state: string; zip: string; country: string; companies: Company[]; }