import * as react_jsx_runtime20 from "react/jsx-runtime"; //#region src/components/agent/AgentMonitor.d.ts interface AgentSessionSnapshot { sessionId: string; agent: string; status: string; tenantId?: string; confidence?: number; iterations?: number; updatedAt: Date; } interface AgentMonitorProps { title?: string; sessions: AgentSessionSnapshot[]; highlightStatus?: string; onSelectSession?: (session: AgentSessionSnapshot) => void; className?: string; } declare function AgentMonitor({ title, sessions, highlightStatus, onSelectSession, className }: AgentMonitorProps): react_jsx_runtime20.JSX.Element; //#endregion export { AgentMonitor }; //# sourceMappingURL=AgentMonitor.d.ts.map