import type { ReasoningLevel } from '../transcript/thinking-types.js'; export type AgentStreamEvent = { type: string; [key: string]: unknown; }; export declare function applyReasoningVisibility(event: AgentStreamEvent, reasoningLevel: ReasoningLevel): AgentStreamEvent | null;