import { Request, Response, NextFunction } from 'express'; export interface ValidationSchema { body?: any; params?: any; query?: any; headers?: any; } export declare const validate: (schema: ValidationSchema) => (req: Request, res: Response, next: NextFunction) => Response> | undefined; //# sourceMappingURL=validation.d.ts.map