import type { ICreateFacilityResponse } from './create-facility.response'; export declare enum FacilityResolution { MATCHED_BY_PLACE_ID = "matched_by_place_id", MATCHED_BY_NATURAL_KEY = "matched_by_natural_key", CREATED = "created" } export interface IResolvedFacilityItem { ref: string; facilityId: number; googlePlaceId: string | null; resolution: FacilityResolution; facility: ICreateFacilityResponse; } export interface IResolveFacilitiesResponse { items: IResolvedFacilityItem[]; } //# sourceMappingURL=resolve-facilities.response.d.ts.map