import { ParticipantType } from '../base/ParticipantType.mjs'; /** * * Represents a healthcare party participating in a contact, along with their participation type. * / */ export declare class ContactParticipant { /** * * The type of participation in the contact. */ type: ParticipantType; /** * * The identifier of the participating healthcare party. */ hcpId: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): ContactParticipant; }