/** * FHIRPath Version Context * ------------------------ * * Centralises the fhirpath.js model-context import for R4, R5, and * (future) R6. Every file that compiles FHIRPath expressions should * call `getFhirPathModel(fhirVersion)` instead of hard-importing * `fhirpath/fhir-context/r4`. * * R6 currently falls back to R5 since fhirpath.js does not ship an * R6 context yet. Once it does, add the import here. */ /** * Return the fhirpath.js model context for a given FHIR version. */ export declare function getFhirPathModel(fhirVersion?: 'R4' | 'R5' | 'R6'): any; //# sourceMappingURL=fhirpath-context.d.ts.map