import { ContextXRayPanelView } from "@agent-native/toolkit/context-ui"; import type { ContextManifest, ContextSegmentStatus, } from "../../shared/context-xray.js"; import { manifestConversationTokens, manifestSystemTokens, } from "../../shared/context-xray.js"; import { useT } from "../i18n.js"; import { resolveContextWindow } from "./format.js"; export function ContextXRayPanel({ manifest, optimistic, onPin, onEvict, onRestore, }: { manifest: ContextManifest; optimistic: Map; onPin: (segmentId: string) => void; onEvict: (segmentId: string) => void; onRestore: (segmentId: string) => void; }) { const t = useT(); return ( ); }