/** * render-bootstrap-diagnostics — host-owned stderr presentation for command-scoped * bootstrap diagnostics (ADR-0060, Phase 5). */ import type { BootstrapDiagnosticsCollector } from '@opensip-cli/core'; /** True when the selected command owns its own bootstrap diagnostic surface. */ export declare function isDedicatedBootstrapDiagnosticCommand(commandPath: string): boolean; /** * Render bootstrap diagnostics relevant to the selected command. Unrelated * installed-tool health stays silent on normal commands (ADR-0060). */ export declare function renderRelevantBootstrapDiagnostics(collector: BootstrapDiagnosticsCollector | undefined, toolId: string): void; //# sourceMappingURL=render-bootstrap-diagnostics.d.ts.map