/**
 * SageMaker Simple Diagnostics Module
 *
 * Provides basic diagnostic functions for SageMaker configuration and connectivity.
 */
import type { DiagnosticReport } from "../../types/index.js";
/**
 * Run quick diagnostics for SageMaker configuration
 */
export declare function runQuickDiagnostics(endpoint?: string): Promise<DiagnosticReport>;
/**
 * Format diagnostic report for console output
 */
export declare function formatDiagnosticReport(report: DiagnosticReport): string;
