import { BaseAxiosConfig, ProxyAgent, StringRecord } from '../../types';
interface GetAxiosConfig {
    proxyAgent?: ProxyAgent;
    timeout?: number;
    headers?: StringRecord;
    token?: string;
    isScraper?: boolean;
}
export declare const getAxiosConfig: ({ proxyAgent, token, headers, timeout, isScraper, }: GetAxiosConfig) => Promise<BaseAxiosConfig>;
export {};
