import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { RegistrySource } from "./registrysource.js"; export type ActivateRegistryEntryRequest = { source: RegistrySource; modelId: string; }; /** @internal */ export declare const ActivateRegistryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type ActivateRegistryEntryRequest$Outbound = { source: string; model_id: string; }; /** @internal */ export declare const ActivateRegistryEntryRequest$outboundSchema: z.ZodType; export declare function activateRegistryEntryRequestToJSON(activateRegistryEntryRequest: ActivateRegistryEntryRequest): string; export declare function activateRegistryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activateregistryentryrequest.d.ts.map