import type * as http from 'node:http';
interface ReqBodyExtended extends http.IncomingMessage {
    body?: Buffer | Record<string, unknown>;
}
export declare const parseBody: (req: ReqBodyExtended) => Buffer;
export {};
