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