import type React from 'react'; import type { BrainLogEntry, BrainRiskLevel } from '../brain-contracts.js'; export type { BrainLogEntry, BrainRiskLevel } from '../brain-contracts.js'; import { type BrainPanelSettings } from './brain-panel-model.js'; export interface BrainPanelProps { riskLevel: BrainRiskLevel; log: BrainLogEntry[]; selected: number; hint?: string | undefined; /** Settings editor state — absent on hosts without a BrainPanelHost (legacy view). */ view?: 'settings' | 'log' | undefined; settings?: BrainPanelSettings | undefined; row?: number | undefined; busy?: boolean | undefined; } export declare function BrainPanel({ riskLevel, log, selected, hint, view, settings, row, busy, }: BrainPanelProps): React.ReactElement; //# sourceMappingURL=brain-panel.d.ts.map