import { AxiosInstance } from "axios"; export interface HttpDigestAuthCredential { username: string; password: string; } export declare const httpDigestAuth: (axiosInstance: AxiosInstance, credentials: HttpDigestAuthCredential) => AxiosInstance;