export declare function parseFormData(rawBody: Uint8Array, contentType: string, options?: { maxBodySize?: number; maxFileSize?: number; }): { [x: string]: string | string[] | { fileName: string; content: Uint8Array; mimeType: string; size: number; }; }; export declare function parseUrlEncoded(bodyText: string): Record; /** * Reads the request/stream and returns a Promise that resolves to the parsed body. */ export declare function parseRequest(req: any, options?: { maxBodySize?: number; maxFileSize?: number; contentType?: string; }): Promise>;