import { z } from "zod"; export declare const healthzOutputSchema: z.ZodObject<{ status: z.ZodEnum<{ pass: "pass"; }>; version: z.ZodString; }, z.core.$strip>; export type HealthzOutput = z.infer; export declare const readyzOutputSchema: z.ZodObject<{ status: z.ZodEnum<{ OK: "OK"; }>; }, z.core.$strip>; export type ReadyzOutput = z.infer; //# sourceMappingURL=probes.d.ts.map