import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type ReleaseDestinationRef = { id: string; slug: string; environment: string | null; }; /** @internal */ export declare const ReleaseDestinationRef$inboundSchema: z.ZodMiniType; export declare function releaseDestinationRefFromJSON(jsonString: string): SafeParseResult;