import type { RendererProps } from './types'; export type ParsedShellResult = { id: string; status: string; exitCode: string; command: string; result: string; }; export declare function parseShellResults(raw: string): ParsedShellResult[]; export declare function ShellResultRenderer({ contentJson, isExpanded, onToggle, compact, }: RendererProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ShellResultRenderer.d.ts.map