import type { AxiosInstance } from 'axios';
import type { Authentication } from '../auth/Authentication';
import type { RetryConfig } from './RetryConfig';
export interface ClientConfig {
    baseUrl: string;
    authentication: Authentication;
    retryConfig: RetryConfig;
    httpClient?: AxiosInstance;
}
//# sourceMappingURL=ClientConfig.d.ts.map