import { ObjectBody } from "./body"; /** * 取得当前请求原始请求内容 * - 经过解压,未经过文字编码转换 */ export declare function $getRawBody(): Promise | undefined>; /** * 取得当前请求文本内容,经过文字编码转换 */ export declare function $getTextBody(): Promise; /** * 取得当前请求数据对象 */ export declare function $getObjectBody(): Promise; /** * BodyHelper 对象 */ export declare const $body: { data(): Promise; get(fields: O): Promise>; page(opt?: import("@zenweb/helper").PageOption): Promise; };