import type React from 'react'; export interface ToolCardProps { glyph: string; color: string; title: string; detail?: string | undefined; meta?: string | undefined; ok: boolean; termWidth: number; hasBody: boolean; children?: React.ReactNode; } /** * Shared terminal-native anatomy for committed tool results. The open left * rail keeps dense output readable without turning every tiny call into a * heavy full-width modal, while the compact header makes tool/state/timing * easy to scan in long transcripts. */ export declare function ToolCard({ glyph, color, title, detail, meta, ok, termWidth, hasBody, children, }: ToolCardProps): React.ReactElement; //# sourceMappingURL=tool-card.d.ts.map