import { type Cookie } from "tough-cookie"; import { HttpClient, type IHttpClientOptions } from "./http-client.js"; export type HttpFormData = { [key: string]: string; }; export declare class HttpClientNode extends HttpClient { private cookieJar; constructor(options: IHttpClientOptions); protected registerCookies(response: Response): Promise; getCookies(): Promise; }