import type { Diagnostic, Provenance } from '../types.ts'; interface DiagnosticsListProps { diagnostics: Diagnostic[]; provenance: Provenance; } export default function DiagnosticsList({ diagnostics, provenance }: DiagnosticsListProps): import("react").JSX.Element; export {};