import type { APIPromise, HttpClient } from "../http.js"; import { type EventsOptions } from "./updates.js"; import type { Event } from "../types/index.js"; import type { InferenceAnalyticsFilters, InferenceAnalyticsResponse } from "@compose-market/core/analytics/inference"; export interface AnalyticsGetOptions { userAddress: string; } export declare class Analytics { private readonly client; private readonly events; constructor(client: HttpClient); get(filters?: InferenceAnalyticsFilters, options?: AnalyticsGetOptions): APIPromise; subscribe(options: EventsOptions): AsyncIterable; } //# sourceMappingURL=analytics.d.ts.map