export interface Todo { description: string; status: string; } /** * GoalStatus — renders the agent's task list as bordered feed entries with * status glyphs. Completed tasks are dimmed. Triggered when the agent calls * the `manage_todos` tool (detected in tool-call-block). */ export declare function GoalStatus({ todos }: { todos: Todo[]; }): import("react").JSX.Element;