import { Router } from 'express'; /** * Generate an express router that calls through * to a given lambda handler function. */ export declare function expressWrap(lambdaHandler: (ev: any, ctx: any) => Promise): Promise;