import type { ValidationIssue } from '../types'; import type { StructureDefinition } from './structure-definition-types'; export interface BundleDocumentContextChildResult { index: number; entryResource: Record; resourceType: string; issues: ValidationIssue[]; structureDef?: StructureDefinition; } /** * Emit HAPI-compatible parent document-context consequences when a * Composition.section.entry points at an embedded resource that cannot * actually conform to its declared target profile. */ export declare function buildBundleDocumentContextIssues(bundle: Record, childResults: BundleDocumentContextChildResult[], bundleStructureDef?: StructureDefinition): ValidationIssue[]; //# sourceMappingURL=bundle-document-context.d.ts.map