import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { RemoteOperatorInstallReceipt } from "./remoteoperatorinstallreceipt.js"; export type RenderOperatorManifestResponse = { /** * Rendered multi-document Kubernetes manifest */ manifest: string; /** * kubectl command for applying the manifest from a file */ applyCommand: string; /** * Suggested local filename */ filename: string; /** * Manager URL embedded in the manifest */ managerUrl: string; /** * True when the operator image is still building. The manifest contains a placeholder image () and must not be applied yet — re-render once the operator-image package is ready to get the real image. */ imagePending: boolean; operatorImage: RemoteOperatorInstallReceipt | null; }; /** @internal */ export declare const RenderOperatorManifestResponse$inboundSchema: z.ZodType; export declare function renderOperatorManifestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=renderoperatormanifestresponse.d.ts.map