export type CliStructuredError = { success: false; stage: string; errorType: string; summary: string; recommendedAction: string; safeToAutoRetry: boolean; logPath?: string; details?: unknown; }; export declare function toCliStructuredError(error: unknown, opts?: { stage?: string; logPath?: string; }): CliStructuredError; //# sourceMappingURL=cli-diagnostics.d.ts.map