import { CaseType } from "../common/enums"; import { BaseService, ClientConfig } from "../base"; export declare const API_ENDPOINTS: { GENERATE_DISCHARGE_SUMMARY: string; GENERATE_FHIR_BUNDLE: string; GET_ALL_ENCOUNTERS: string; GET_ENCOUNTER_BY_ID: (id: string) => string; CHECK_ENCOUNTER_EXISTS: (id: string) => string; }; export declare class Utilities extends BaseService { private logger; constructor(config: ClientConfig); validateDocumentReferenceCount(caseType: CaseType, documentReferences: string[] | undefined, enableExtraction: boolean): void; encryption(payload: Record, publicKey?: string): Promise>; decryption(encryptedData: string, privateKey?: string): Promise>; }