import { APIGatewayProxyEvent } from 'aws-lambda';
import { ZodSchema } from 'zod';
export declare const validateBody: <T>(event: APIGatewayProxyEvent, schema: ZodSchema<T>) => T;
