import { TelemetryEvent } from './events'; import { ProjectTelemetryConfig } from '../codegen/types'; /** * Send telemetry event to tracking endpoint. * * **CRITICAL**: This function is designed to NEVER throw or reject. * All errors are handled internally and logged only in debug mode. * It is safe to call without .catch() or try/catch. * * @param event - The telemetry event to send * @param projectConfig - Optional project-level telemetry config * @returns Promise that always resolves (never rejects) */ export declare function sendEvent(event: TelemetryEvent, projectConfig?: ProjectTelemetryConfig): Promise;