/** * Health check event types and schemas */ import { z } from 'zod'; /** * Health check input schema */ export declare const HealthCheckInputSchema: z.ZodObject<{}, z.core.$strict>; /** * Health check output schema */ export declare const HealthCheckOutputSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; ok: "ok"; }>; extension_version: z.ZodString; workspace: z.ZodOptional; timestamp: z.ZodString; error: z.ZodOptional; system_info: z.ZodOptional; ide_type: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strict>; /** * Health check payload (input parameters) */ export type HealthCheckPayload = z.infer; /** * Health check result (output data) */ export type HealthCheckResult = z.infer; //# sourceMappingURL=health-check.d.ts.map