/** * SMI-4250: Extracted dynamic import + instrumentation registry for tracer. * * Lives in its own module so tests can `vi.mock` the import surface without * having to mock all of tracer.ts. The class registry encodes which OTel * instrumentation packages tracer.ts attempts to load on init; each entry * is optional at runtime and silently skipped if the package isn't installed * (e.g. `instrumentation-aws-sdk` only loads when `@smith-horn/enterprise` * is present in the consuming install). */ export declare function dynamicImport(moduleName: string): Promise; export declare const INSTRUMENTATION_PACKAGES: ReadonlyArray; //# sourceMappingURL=tracer-imports.d.ts.map