/** * * DTO representing the public key of a healthcare party, used for end-to-end encryption. * / */ export declare class PublicKey { /** * * The identifier of the healthcare party that owns this public key. */ hcPartyId: string | undefined; /** * * The public key encoded as a hexadecimal string. */ hexString: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): PublicKey; }