import { z } from "zod"; export declare const updateReviewSchema: z.ZodObject<{ data: z.ZodArray; }, "strip", z.ZodTypeAny, { id: string; is_admin_verified?: boolean | undefined; }, { id: string; is_admin_verified?: boolean | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { data: { id: string; is_admin_verified?: boolean | undefined; }[]; }, { data: { id: string; is_admin_verified?: boolean | undefined; }[]; }>; export type updateReviewType = z.infer; export declare const deleteBulkReviewSchema: z.ZodObject<{ data: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { data: { id: string; }[]; }, { data: { id: string; }[]; }>; export type deleteBulkReviewType = z.infer;