import type { UserEvent } from './UserEvent.ts'; /** HTTP client for sending tracking events to the XY Labs pixel API. */ export declare class PixelApi { private endPoint; constructor(baseUri?: string); /** * Sends an array of user events to the tracking API. * @param events - The events to submit * @returns The response data from the API */ trackEvents(events: UserEvent[]): Promise; } //# sourceMappingURL=Api.d.ts.map