import { AxiosInstance } from "axios"; import type { DriverConfig } from "../types/driver"; /** * Creates the axios instance and wires its interceptors. Registration order is * significant and preserved exactly: the error/refresh response interceptor is * registered first, then the request transform interceptor, then the response * transform interceptor. */ export declare function createAxiosInstance(config: DriverConfig): AxiosInstance;