/**
 * Health check tool — returns server status without hitting external APIs.
 * Useful for connectivity tests, health checks, and as a lightweight
 * way for clients to verify the server is responding.
 */
import * as z from "zod";
export declare const Health: z.ZodObject<{}, z.core.$strip>;
export type Health = z.output<typeof Health>;
interface HealthResult {
    status: string;
    version: string;
    server: string;
}
export declare function health(): HealthResult;
export {};
//# sourceMappingURL=health.d.ts.map