import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CatalogHealth = { isAvailable: boolean; lastHealthCheck: number | null; error: string | null; }; /** @internal */ export declare const CatalogHealth$inboundSchema: z.ZodType; /** @internal */ export type CatalogHealth$Outbound = { is_available: boolean; last_health_check: number | null; error: string | null; }; /** @internal */ export declare const CatalogHealth$outboundSchema: z.ZodType; export declare function catalogHealthToJSON(catalogHealth: CatalogHealth): string; export declare function catalogHealthFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cataloghealth.d.ts.map