/** * Shared diagnostic check safety wrapper. * * Runs a diagnostic check function and catches any unexpected errors, * returning a structured failure result instead of throwing. */ import type { DiagnosticCheckResult } from './types.js'; export declare function safeCheck(fn: () => Promise): Promise; //# sourceMappingURL=safe-check.d.ts.map