import { LookupModel } from '../../../shared/models/lookup-model'; import { ContactList } from './contact.model'; export declare class Locations { id: number; locationName: string; locationType: LookupModel; address: string; city: string; state: LookupModel; zipCode: string; borough: LookupModel; status: LookupModel; employerId: number; locationId: number; isValid: boolean; contacts: ContactList[]; constructor(data: unknown); }