import type { IncomingMessage } from 'node:http'; export declare class Request { private raw; private _body; private _bodyParsed; private _query; private _cookies; private _params; constructor(raw: IncomingMessage); get method(): string; get url(): string; get path(): string; get headers(): Record; get contentType(): string | undefined; get query(): Record; get params(): Record; set params(value: Record); get cookies(): Record; body(): Promise; is(type: string): boolean; getRaw(): IncomingMessage; } //# sourceMappingURL=request.d.ts.map