import { LookupModel } from '../../../shared/models/lookup-model'; import { LocationListItem } from '../../../shared/shared-module/location/models/location-list-item.model'; export declare class SaveAgency { id?: number; agencyName: string; agencyShortName: string; department: LookupModel; agencyType: LookupModel; caseTypes: LookupModel[]; agencyServices: LookupModel[]; agencyCode: string; locOff: string; boroughLookupId: number; agencyStartDate: Date; agencyEndDate: Date; locations: LocationListItem[]; isSubmit: boolean; constructor(data: unknown); }