import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The result of the deletion operation. */ export declare const ComponentsDestroyResponseResult: { readonly Ok: "ok"; readonly NotFound: "not found"; }; /** * The result of the deletion operation. */ export type ComponentsDestroyResponseResult = ClosedEnum; export declare const ComponentsDestroyResponseResult$zodSchema: z.ZodEnum<{ ok: "ok"; "not found": "not found"; }>; export type ComponentsDestroyResponse = { result: ComponentsDestroyResponseResult; }; export declare const ComponentsDestroyResponse$zodSchema: z.ZodType; //# sourceMappingURL=componentsdestroyresponse.d.ts.map