import { Poule } from '../poule'; import { Place } from '../place'; import { JsonPlace } from './json'; import { JsonPlaceLocation } from './location/json'; import { PlaceLocation } from './location'; import * as i0 from "@angular/core"; export declare class PlaceMapper { constructor(); toObject(json: JsonPlace, poule: Poule, place?: Place): Place; toLocation(jsonPlaceLocation: JsonPlaceLocation): PlaceLocation; toJson(place: Place): JsonPlace; toJsonLocation(place: Place): JsonPlaceLocation; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export interface PlaceMap { [key: string]: Place; }