import { ClusterAttributes, DetectedErrorsByCluster } from '@backstage/plugin-kubernetes-common'; /** * * * @public */ export type ErrorReportingProps = { detectedErrors: DetectedErrorsByCluster; clusters: ClusterAttributes[]; }; /** * * * @public */ export declare const ErrorReporting: ({ detectedErrors, clusters, }: ErrorReportingProps) => import("react/jsx-runtime").JSX.Element;