import type { AxiosInstance } from 'axios'; import type { AnalyticsMetricRequest } from '../types'; export declare class SpearlyAnalyticsApiClient { client: AxiosInstance; constructor(domain?: string); postMetric(data: AnalyticsMetricRequest): Promise>; }