import { LocationOperationHourListItem } from './location-operation-hours.model'; import { SchoolContactListItem } from './school-contacts.model'; import { SchoolLocation } from './school-location.model'; export declare class SchoolLocationListItem { location: SchoolLocation; schoolLocMappingId: number; schoolId: number; isMainOffice: boolean; schoolContacts: SchoolContactListItem[]; locationOperatingHours: LocationOperationHourListItem[]; constructor(data: unknown); }