/** * @fhir-toolkit/r5-specs * * FHIR R5 StructureDefinitions, ValueSets, and CodeSystems for validation. * This package provides the official HL7 FHIR R5 specification files. * * @packageDocumentation */ /** * FHIR version provided by this package */ declare const FHIR_VERSION: "R5"; /** * FHIR version string (e.g., "5.0.0") */ declare const FHIR_VERSION_STRING: "5.0.0"; /** * Path to the specs directory containing StructureDefinitions, ValueSets, and CodeSystems * * @example * ```typescript * import { specsPath } from '@fhir-toolkit/r5-specs'; * import { FhirValidator } from '@fhir-toolkit/yafv'; * * const validator = new FhirValidator({ * fhirVersion: 'R5', * specsPath: specsPath * }); * ``` */ declare const specsPath: string; /** * Package metadata */ declare const metadata: { readonly name: "@fhir-toolkit/r5-specs"; readonly version: "R5"; readonly versionString: "5.0.0"; readonly specsPath: string; }; export { FHIR_VERSION, FHIR_VERSION_STRING, metadata as default, metadata, specsPath };