import * as z from "zod"; import { Result as SafeParseResult } from "../../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * OPA service is healthy. If the bundles option is specified then all configured bundles have been activated. If the plugins option is specified then all plugins are in an OK state. */ export type HealthyServer = {}; /** @internal */ export declare const HealthyServer$inboundSchema: z.ZodType; /** @internal */ export type HealthyServer$Outbound = {}; /** @internal */ export declare const HealthyServer$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HealthyServer$ { /** @deprecated use `HealthyServer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HealthyServer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HealthyServer$Outbound` instead. */ type Outbound = HealthyServer$Outbound; } export declare function healthyServerToJSON(healthyServer: HealthyServer): string; export declare function healthyServerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=healthyserver.d.ts.map