import { AxiosInstance } from 'axios'; import { Batch } from '../../types'; import { Api } from '../api.types'; export declare class AxiosApi implements Api { #private; constructor(platform: string, publicApiKey: string, acceptLanguage?: string, debug?: boolean, apiUrl?: string); sendBatch(batches: Batch[]): Promise; sendMetricsBatch(batches: Batch[]): Promise; getInstances(): AxiosInstance; }