import type { TelemetryEvent, ToolInvocation } from "./types.js"; /** * Build a telemetry event from a tool invocation. * * Sends raw hook fields only. Classification (`action_type`, `command_components`, * paths, patterns, MCP split) is performed server-side in Django * (`tool_call_audit.classification.enrich`). */ export declare function buildTelemetryEvent(inv: ToolInvocation | null | undefined, agentIdentity?: string, sessionId?: string | null): TelemetryEvent | null; //# sourceMappingURL=build-event.d.ts.map