import { Request } from '../transport/request.js'; import { HttpResponse, RequestHandler } from '../types.js'; /** * Final handler in the request chain that executes the actual HTTP request. * Uses the configured HTTP client adapter (Fetch or Axios) to send the request. */ export declare class TerminatingHandler implements RequestHandler { /** * Executes the actual HTTP request using the configured client adapter. * @template T - The expected response data type * @param request - The HTTP request to execute * @returns A promise that resolves to the HTTP response */ handle(request: Request): Promise>; /** * Executes a streaming HTTP request using the configured client adapter. * @template T - The expected response data type for each chunk * @param request - The HTTP request to execute * @returns An async generator that yields HTTP responses */ stream(request: Request): AsyncGenerator>; } //# sourceMappingURL=terminating-handler.d.ts.map