import type { TelemetryData } from './types.js'; /** * Sends the telemetry event to the telemetry client. * * @param telemetryEventName - the event name to be reported * @param telemetryData - the telemetry data * @param appPath - the path of the application * @returns - a promise that resolves when the event is sent */ export declare function sendTelemetry(telemetryEventName: string, telemetryData: TelemetryData, appPath?: string): Promise; /** * Sends the telemetry event to the telemetry client and blocks the execution until the event is sent. * * @param telemetryEventName - the event name to be reported * @param telemetryData - the telemetry data * @param appPath - the path of the application * @returns - a promise that resolves when the event is sent */ export declare function sendTelemetryBlocking(telemetryEventName: string, telemetryData: TelemetryData, appPath?: string): Promise; //# sourceMappingURL=utils.d.ts.map