import * as z from "zod/v4"; import { OpenEnum } from "../types/enums.js"; /** * Outcome for one deletion target: `deleted` (removed), `unsupported` (the provider has no batch-delete API; supported file cleanup still runs), or `not_applicable` (the batch never reached that target). */ export declare const BatchDeletionOutcome: { readonly Deleted: "deleted"; readonly Unsupported: "unsupported"; readonly NotApplicable: "not_applicable"; }; /** * Outcome for one deletion target: `deleted` (removed), `unsupported` (the provider has no batch-delete API; supported file cleanup still runs), or `not_applicable` (the batch never reached that target). */ export type BatchDeletionOutcome = OpenEnum; /** @internal */ export declare const BatchDeletionOutcome$inboundSchema: z.ZodType; //# sourceMappingURL=batchdeletionoutcome.d.ts.map