import * as z from "zod/v4-mini"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; import { ServerStatus } from "./server-status.js"; export declare const Status: { readonly Ok: "ok"; }; export type Status = ClosedEnum; export type HealthResponse = { status: Status; /** * Tracearr server version */ version: string; timestamp: Date; servers: Array; }; /** @internal */ export declare const Status$inboundSchema: z.ZodMiniEnum; /** @internal */ export declare const HealthResponse$inboundSchema: z.ZodMiniType; export declare function healthResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=health-response.d.ts.map