/** * BashCell — renders a bash tool call with a collapsible terminal-style output. * * Shows: * - Header: `$ ` + exit-code badge + duration * - Body: monospace streaming output, stick-to-bottom while running, * capped at MAX_VISIBLE_LINES by default (expandable) */ export interface BashCellMeta { toolKind: "bash"; command: string; cwd: string; exitCode?: number | null; durationMs?: number; timedOut?: boolean; } interface BashCellProps { meta: BashCellMeta; /** Raw tool output string from the agent. */ output?: string; isRunning: boolean; } export declare function BashCell({ meta, output, isRunning }: BashCellProps): import("react").JSX.Element; export {}; //# sourceMappingURL=BashCell.d.ts.map