import { TransportClient } from '../shared/transport-client'; export declare class RemoteEventTracker { private readonly transport; constructor(transport: TransportClient); /** Send an event. Fire-and-forget — returns no Promise and doesn't throw. * Network/transport errors are logged to the console and don't block the caller. */ track(name: string, props?: Record): void; } //# sourceMappingURL=RemoteEventTracker.d.ts.map