import { AgencyEmployee, BranchDepartment, HestiaService } from '../models'; export interface SerializableBranch { id: number | null; slug: string | null; name: string | null; mainPhoto: string | null; email: string | null; description: string | null; lat: number | null; lng: number | null; displayAddress: string | null; contactTelephone: string | null; urlLabel: string | null; salesTelephone: string | null; lettingsTelephone: string | null; branchManager: AgencyEmployee | null; services: HestiaService[] | null; agencyId: number | null; isSalesEnabled: boolean; isLettingsEnabled: boolean; departments: BranchDepartment[]; } //# sourceMappingURL=branch.d.ts.map