declare module "lambda-multipart-parser" { import { APIGatewayProxyEvent, } from "aws-lambda" interface MultipartFile { filename: string content: Buffer contentType: string encoding: string fieldname: string } type MultipartRequest = { files: MultipartFile[] } & Record export function parse (event: APIGatewayProxyEvent): Promise }