import { APIGatewayProxyEvent } from'aws-lambda';
/**
* Middleware to verify a JWT token for AWS Lambda.
* @paramevent - The AWS API Gateway Proxy event.
* @returns The decoded user info if token is valid.
*/exportdeclareconstauthenticate: (event: APIGatewayProxyEvent) =>any;