/** @jsxImportSource @opentui/react */ /** * Plan / tasks side pane — modern CLAI chrome. * * Matches project theme: statusBackground panel, cyan/magenta accents, * chip badges (like mode / YOU chrome), progress bar, card-like task rows * with a left state rail. Full wrap — never ellipsize titles/notes. */ import { type ReactNode } from "react"; import type { SessionPlan } from "../../../store/plan.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; export interface PlanViewProps { readonly theme: Theme; readonly plan: SessionPlan | undefined; readonly services: AppServices; readonly width?: number | undefined; } export declare function PlanView(props: PlanViewProps): ReactNode;