/** * Server Info Diagnostic Tool * Provides health status and connection testing */ export declare function serverInfoTool(): Promise<{ server: string; version: string; status: string; connection: { status: string; baseURL: string; authenticated: string; responseTime: string; error: any; }; currentUser: { id: any; email: any; } | null; tools_available: string[]; configuration: { baseURL: string; timeout: number | undefined; maxRetries: number | undefined; }; troubleshooting: { common_issues: string[]; support: string; }; }>; //# sourceMappingURL=server-info.d.ts.map