/** * Internal SDK event vocabulary. * * These values are not imported from `@modelcontextprotocol/sdk`; they are the * protocol-shaped event types this SDK observes before mapping them to PostHog * event names. */ export declare const MCPAnalyticsEventType: { readonly identify: "posthog:identify"; readonly custom: "posthog:custom"; readonly mcpMissingCapability: "mcp:missing_capability"; readonly mcpInitialize: "mcp:initialize"; readonly mcpPromptsGet: "mcp:prompts/get"; readonly mcpPromptsList: "mcp:prompts/list"; readonly mcpResourcesList: "mcp:resources/list"; readonly mcpResourcesRead: "mcp:resources/read"; readonly mcpToolsCall: "mcp:tools/call"; readonly mcpToolsList: "mcp:tools/list"; }; export type MCPAnalyticsEventType = (typeof MCPAnalyticsEventType)[keyof typeof MCPAnalyticsEventType]; //# sourceMappingURL=event-types.d.ts.map