import { AxiosInstance } from "axios"; import { EkycConfig } from "../types"; /** * Create a configured Axios instance for the eKYC SDK. * * - Automatically attaches the API key via `x-api-key` header * - Supports both JSON and multipart/form-data requests * - Centralized error handling via response interceptor * * @param config - SDK configuration * @returns Configured Axios instance */ export declare function createHttpClient(config: EkycConfig): AxiosInstance; //# sourceMappingURL=httpClient.d.ts.map