import { MethodValue, OutgoingRequestValue } from "./Values"; export declare function outgoingRequest(url?: string): OutgoingRequestBuilder; export declare class OutgoingRequestBuilder { private _body?; private _cookies?; private _headers?; private _method?; private _path?; private _query?; private _url; constructor(url?: string); method(method: MethodValue): this; get(url: string): this; post(url: string): this; put(url: string): this; delete(url: string): this; url(url: string): this; path(path: string): this; query(name: string, value: string | string[]): this; cookie(name: string, value: string): this; header(name: string, value: string | string[]): this; body(body: string): this; text(body: string): this; json(value: unknown): this; _build(): OutgoingRequestValue; }