import { Referee } from '../referee'; import { Competition } from '../competition'; import { JsonReferee } from './json'; import * as i0 from "@angular/core"; export declare class RefereeMapper { toObject(json: JsonReferee, competition: Competition): Referee; getFromCompetition(id: string | number, competition: Competition): Referee | undefined; updateObject(json: JsonReferee, referee: Referee): Referee; toJson(referee: Referee): JsonReferee; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export interface RefereeMap { [key: number]: Referee; }