import { request } from "undici"; import { ObjectSerializable } from "../typings/types/ObjectSerializable"; import { StringSerializable } from "../typings/types/StringSerializable"; export declare class Request { private readonly params; private request; private readonly query; constructor(...params: Parameters); addQueryParam(name: string, value: StringSerializable): this; addQueryObject(object: ObjectSerializable): this; getRequestURL(): string; process(): Promise; } //# sourceMappingURL=Request.d.ts.map