import { PodAndErrors } from '../types'; /** * Props for ErrorList * * @public */ export interface ErrorListProps { podAndErrors: PodAndErrors[]; } /** * Shows a list of errors found on a Pod * * @public */ export declare const ErrorList: ({ podAndErrors }: ErrorListProps) => import("react/jsx-runtime").JSX.Element;