import { httpSend } from "../http/client.js"; import "../http/index.js"; import { TelemetryReport } from "./types.js"; //#region src/server/telemetry/transport.d.ts declare const postReport: (report: TelemetryReport, endpoint: string, { send, timeoutMs }?: { send?: typeof httpSend; timeoutMs?: number; }) => Promise; //#endregion export { postReport }; //# sourceMappingURL=transport.d.ts.map