import { AxiosInstance } from 'axios'; import { Batch } from '../types'; declare class Api { #private; init(publicApiKey: string, platform: string): void; sendBatch(batches: Batch[]): Promise> | undefined; getInstances(): AxiosInstance | null; } export declare const api: Api; export {};