/** * FHIRPath Model Resolver * * Maps FHIR version to the correct fhirpath.js model context. * Single source of truth — used by constraint-validator, sd-fhirpath-executor, * and custom-rule-executor instead of hardcoding fhirpath_r4. */ type FhirVersion = 'R4' | 'R5' | 'R6'; /** * Get the fhirpath.js model for a given FHIR version. * R6 uses the R5 model (no dedicated R6 model exists yet). */ export declare function getFhirPathModel(fhirVersion?: FhirVersion): any; export {}; //# sourceMappingURL=fhirpath-model-resolver.d.ts.map