import { StockApi } from './StockApi';
import { MarketApi } from './MarketApi';
import { ScreenerApi } from './ScreenerApi';
import { ApiClientConfig } from './types';
export declare class ApiClient {
    stock: StockApi;
    market: MarketApi;
    screener: ScreenerApi;
    private axiosInstance;
    constructor(config: ApiClientConfig);
}
