import { Container } from "@oh-my-pi/pi-tui"; import type { TodoItem } from "../../tools/todo-write"; /** * Component that renders a todo completion reminder notification. * Shows when the agent stops with incomplete todos. */ export declare class TodoReminderComponent extends Container { #private; private readonly todos; private readonly attempt; private readonly maxAttempts; constructor(todos: TodoItem[], attempt: number, maxAttempts: number); }