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<any, Record<string, any>> | undefined;
//# sourceMappingURL=validation.d.ts.map