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 RegistryEntryResponse = { modelId: string; source: RegistrySource; activatedBy: string; activatedAt: Date; }; /** @internal */ export declare const RegistryEntryResponse$inboundSchema: z.ZodType; /** @internal */ export type RegistryEntryResponse$Outbound = { model_id: string; source: string; activated_by: string; activated_at: string; }; /** @internal */ export declare const RegistryEntryResponse$outboundSchema: z.ZodType; export declare function registryEntryResponseToJSON(registryEntryResponse: RegistryEntryResponse): string; export declare function registryEntryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=registryentryresponse.d.ts.map