export declare const SEVERITY_CRITICAL = "critical"; export declare const SEVERITY_HIGH = "high"; export declare const SEVERITY_MEDIUM = "medium"; export declare const SEVERITY_LOW = "low"; export declare const SEVERITY_INFO = "info"; export declare const SEVERITY_ORDER: string[]; export interface ToolInvocation { tool_name: string; tool_input: Record; tool_use_id?: string | null; session_id?: string | null; cwd?: string | null; hook_event_name?: string | null; model?: string | null; agent_message?: string | null; user_prompt?: string | null; raw_event?: Record; } export interface TelemetryEvent { timestamp: string; agent_identity: string; event_type: string; session_id?: string | null; tool_use_id?: string | null; hook_event_name?: string | null; working_directory?: string | null; tool_call_metadata: { tool_name: string; tool_input?: Record; user_prompt?: string | null; raw_event?: Record; hook_hash?: string | null; }; } //# sourceMappingURL=types.d.ts.map