import React from 'react'; import type { ResponseOutputEvent } from '@just-every/ensemble'; import type { MetaMemoryEventData } from '../utils/metaMemoryEventProcessor'; import './style.scss'; export interface MemoryTagGraphProps { messages: ResponseOutputEvent[]; memoryData: MetaMemoryEventData; messagePositions: number[]; fullHeight: number; className?: string; onWidthChange?: (width: number) => void; isStreaming?: boolean; isLoading?: boolean; } export declare const MemoryTagGraph: React.FC; //# sourceMappingURL=MemoryTagGraph.d.ts.map