interface FeedbackEvent { type: 'tool_call' | 'discovery'; toolName?: string; feedback?: string; feedbackTool?: string; model?: string; discoveryPath?: string; frictionPoints?: string; } export declare function captureClientInfo(info: { name: string; version: string; }): void; export declare function captureWalletAddress(address: string): void; export declare function sendFeedbackEvent(event: FeedbackEvent): void; export {};