import type { CodeSystem, CodeSystemConcept } from './valueset-types'; export declare const HL7_CONCEPT_PROPERTY_NAMESPACE = "http://hl7.org/fhir/concept-properties#"; export declare const HL7_KNOWN_CONCEPT_PROPERTIES: Set; export declare const ALLOWED_FILTER_OPS: Set; export declare function parseSystemVersionCode(value: string): { system: string; version?: string; code: string; } | null; export declare function codeSystemHasCode(cs: CodeSystem | undefined, code: string): boolean; export declare function codeSystemDisplayFor(cs: CodeSystem | undefined, code: string): string | undefined; export declare function countCodeSystemConcepts(concepts: CodeSystemConcept[] | undefined): number; export declare function getCachedCodeSystem(systemUrl: string | undefined): CodeSystem | undefined; export declare function stripVersion(url: string): string; export declare function isTxOnlySystem(url: string): boolean; export declare function isHl7Url(url: string): boolean; export declare function isAbsoluteUri(uri: string): boolean; export declare function validateUrnUuid(urn: string): { valid: boolean; uuid: string; }; //# sourceMappingURL=terminology-resource-utils.d.ts.map