import { PersonModel } from './person.model'; import { FunctionModel } from './function.model'; export declare class ParticipantModel { id: number; person: PersonModel; function: FunctionModel; orderInFunction: number; constructor(); fromJSON(json: any): this; fromJSONs(jsons: any): ParticipantModel[]; } //# sourceMappingURL=participant.model.d.ts.map