import type { Line } from '../types.js'; type ErrorGroup = { processName: string; lines: Line[]; }; type Props = { errors: ErrorGroup[]; isExpanded: boolean; }; declare const _default: import("react").MemoExoticComponent<({ errors, isExpanded }: Props) => import("react/jsx-runtime").JSX.Element | null>; export default _default;