import type { ValidationIssue } from '../types'; /** * Validates URI-shaped primitive values that Java reports as absolute-only. * * Some FHIR `uri` fields accept relative references while canonical/url-like * fields do not. Keep the absolute check path-sensitive to preserve Java parity * on fields such as Questionnaire.url while avoiding false positives on * relative TestReport detail links. */ export declare function validateUriFormat(value: string, path: string, resourceType: string, profileUrl?: string): ValidationIssue | null; //# sourceMappingURL=uri-format-validator.d.ts.map