import { HttpApiEvent } from "./payload"; export declare class Request { private event; constructor(event: HttpApiEvent); getProperties(): { body: any; path: { [name: string]: string; }; rawPath: string; query: { [name: string]: string; }; rawQueryString: string; headers: { [name: string]: string; }; testRequest: boolean; auth: any; }; private getAuth; } export declare class Body { private body; private headers; constructor(body: any, headers: { [name: string]: string; }); getParsedBody(): any; private getContentType; private isFormUrlEncoded; private isJSON; }