import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CatalogHealthResponse = { isAvailable: boolean; error?: string | undefined; checkedAt: number; }; /** @internal */ export declare const CatalogHealthResponse$inboundSchema: z.ZodType; /** @internal */ export type CatalogHealthResponse$Outbound = { is_available: boolean; error?: string | undefined; checked_at: number; }; /** @internal */ export declare const CatalogHealthResponse$outboundSchema: z.ZodType; export declare function catalogHealthResponseToJSON(catalogHealthResponse: CatalogHealthResponse): string; export declare function catalogHealthResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cataloghealthresponse.d.ts.map