import type { Request } from 'express'; /** * Provided a "Request" provided by express or connect (typically a node style * HTTPClientRequest), Promise the body data contained. */ export declare function parseBody(req: Request): Promise<{ [param: string]: unknown; }>;