import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeactivateRegistryEntryResponse = { id: string; deactivated: boolean; }; /** @internal */ export declare const DeactivateRegistryEntryResponse$inboundSchema: z.ZodType; /** @internal */ export type DeactivateRegistryEntryResponse$Outbound = { id: string; deactivated: boolean; }; /** @internal */ export declare const DeactivateRegistryEntryResponse$outboundSchema: z.ZodType; export declare function deactivateRegistryEntryResponseToJSON(deactivateRegistryEntryResponse: DeactivateRegistryEntryResponse): string; export declare function deactivateRegistryEntryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deactivateregistryentryresponse.d.ts.map