/** * Debug view component that displays the context being sent to Claude * with color-coding to indicate provenance of each section. */ import React from 'react'; import type { DebugContext } from '../hooks/useAppState.js'; interface DebugContextViewProps { context: DebugContext; expanded?: boolean; } export declare function DebugContextView({ context, expanded, }: DebugContextViewProps): React.ReactElement; export {}; //# sourceMappingURL=DebugContextView.d.ts.map