import { ReportingAPI, ReportingAPIResponse } from "./ReportingAPI";
import { Event } from "./Event";
import { Token } from "./Token";
export declare class ReportingAPINodeHTTP implements ReportingAPI {
    private readonly reportingUrl;
    constructor(reportingUrl: URL);
    private toAPIResponse;
    report(token: Token, event: Event, timeoutInMS: number): Promise<ReportingAPIResponse>;
}
