/** * Operational telemetry dispatch — observes successful tool invocations * and emits anonymized events. Strictly conservative: if the data needed * for a faithful event isn't available in args or result, nothing is emitted. * * Hooked from src/index.ts after every tool handler returns. */ interface DispatchContext { protocolVersion: string; nodeVersion: string; vertical: string; region: string; orgSlug?: string; } export declare function dispatchOperationalTelemetry(toolName: string, args: Record, result: unknown, ctx: DispatchContext): void; export {}; //# sourceMappingURL=dispatch.d.ts.map