import { z } from "zod"; /** Body for POST /api/cache/alert/resolve. */ export declare const ResolveCacheAlertSchema: z.ZodObject<{ fingerprint: z.ZodString; action: z.ZodEnum<{ ignore: "ignore"; prune_all: "prune_all"; prune_selected: "prune_selected"; reset_rescan: "reset_rescan"; }>; ids: z.ZodOptional>; }, z.core.$strip>; export type ResolveCacheAlertBody = z.infer; //# sourceMappingURL=cacheAlert.schema.d.ts.map