import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SetupRegistrationOperationResult = { /** * Unique identifier for the deployment. */ deploymentId: string; deploymentToken: string | null; helmValues: string | null; }; /** @internal */ export declare const SetupRegistrationOperationResult$inboundSchema: z.ZodType; export declare function setupRegistrationOperationResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=setupregistrationoperationresult.d.ts.map