import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const Deleted: { readonly Deleted: "deleted"; readonly NotFound: "not_found"; }; export type Deleted = ClosedEnum; export declare const Deleted$zodSchema: z.ZodEnum<{ deleted: "deleted"; not_found: "not_found"; }>; export type Invalidation = { took?: number | undefined; urls?: Array | undefined; }; export declare const Invalidation$zodSchema: z.ZodType; /** * Response for derived resource deletion */ export type DerivedDestroyResponse = { deleted?: { [k: string]: Deleted; } | undefined; unauthorized?: Array | undefined; invalidation?: Invalidation | undefined; }; export declare const DerivedDestroyResponse$zodSchema: z.ZodType; //# sourceMappingURL=deriveddestroyresponse.d.ts.map