import type { ValidationIssue } from '../types'; export type BindingStrength = 'required' | 'extensible' | 'preferred' | 'example'; export interface CodeInfo { code: string; system?: string; version?: string; display?: string; codingIndex?: number; } export declare function displayMismatchSeverityForBinding(bindingStrength?: BindingStrength): ValidationIssue['severity']; export declare function resourceTypeFromElementPath(elementPath: string): string; export declare function buildDisplayMismatchFixHint(codeInfo: CodeInfo, expectedDisplay: string): string; export declare function displaysEquivalent(expected: string, actual: string): boolean; export declare function displaysEquivalentForCodeInfo(expected: string, actual: string, codeInfo: Pick): boolean; //# sourceMappingURL=valueset-display-utils.d.ts.map