import { Readable } from "node:stream"; import type { AccessKey, AuthToken } from "../../credentials"; import { type BaseURL, type ClientResponse, LaraClient, type MultiPartFile } from "./client"; /** @internal */ export declare class NodeLaraClient extends LaraClient { private readonly baseUrl; private readonly agent; private readonly timeout; constructor(baseUrl: BaseURL, auth: AccessKey | AuthToken, keepAlive: boolean, timeout?: number); protected send(method: string, path: string, headers: Record, body?: Record, streamResponse?: boolean): Promise; protected sendAndGetStream(method: string, path: string, headers: Record, body?: Record): AsyncGenerator; protected wrapMultiPartFile(file: MultiPartFile): Readable; } export declare class NodeClient { static get(url: string, headers?: Record): Promise; private static send; }