import { z } from "zod"; import { type StorageClient } from "../storage/client.js"; export declare const batchDeletePagesInputSchema: z.ZodObject<{ names: z.ZodArray; confirm: z.ZodDefault; reason: z.ZodOptional; }, "strip", z.ZodTypeAny, { names: string[]; confirm: boolean; reason?: string | undefined; }, { names: string[]; reason?: string | undefined; confirm?: boolean | undefined; }>; export type BatchDeletePagesInput = z.infer; export declare function batchDeletePages(drive: StorageClient, input: BatchDeletePagesInput, userId?: string): Promise; //# sourceMappingURL=batchDeletePages.d.ts.map