import type { PikkuHTTPRequest } from '@pikku/core/http'; import type { HTTPMethod, PikkuQuery } from '@pikku/core/http'; export declare class UWSPikkuHTTPRequest implements PikkuHTTPRequest { #private; private _method; private _path; private _query; private _headers; private _body?; constructor(_method: HTTPMethod, _path: string, _query: string, _headers: Record, _body?: Buffer | undefined); method(): HTTPMethod; path(): string; json(): Promise; arrayBuffer(): Promise; headers(): Record; header(name: string): string | null; cookie(name: string): string | null; params(): Partial>; setParams(params: Record): void; query(): PikkuQuery; data(): Promise; private parseBody; }