import type { AxiosInstance } from 'axios'; import type { BatchLogPayload } from './types'; export default class LogApi { private readonly api; constructor(api: AxiosInstance); batch(payload: BatchLogPayload): Promise; }