import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteModelCatalogEntryRequest = { id: string; }; /** @internal */ export declare const DeleteModelCatalogEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteModelCatalogEntryRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteModelCatalogEntryRequest$outboundSchema: z.ZodType; export declare function deleteModelCatalogEntryRequestToJSON(deleteModelCatalogEntryRequest: DeleteModelCatalogEntryRequest): string; export declare function deleteModelCatalogEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletemodelcatalogentry.d.ts.map