import { Request, Response, NextFunction } from "express"; import { z, AnyZodObject } from "zod"; export declare const SomeExpressRequest: z.ZodObject<{ headers: z.ZodOptional>; params: z.ZodOptional>; query: z.ZodOptional>; body: z.ZodOptional>; }, "strip", z.ZodTypeAny, { params?: {} | undefined; headers?: {} | undefined; query?: {} | undefined; body?: {} | undefined; }, { params?: {} | undefined; headers?: {} | undefined; query?: {} | undefined; body?: {} | undefined; }>; export default function validateRequestSchema(schema: AnyZodObject): (req: Request, res: Response, next: NextFunction) => Promise; //# sourceMappingURL=validateRequestSchema.d.ts.map