import type { AxiosInstance } from "axios"; import type { DriverConfig, HttpDriverInstance } from "../types/driver"; /** * Assembles a driver: an axios instance augmented with the per-service exec * methods. This replaces the former Driver god class — each responsibility now * lives in a focused collaborator (axios-instance, service-resolver, the * transports, the pipeline) and is wired together here. */ export declare function createHttpDriver(config: DriverConfig): HttpDriverInstance & AxiosInstance;