import { ProcessData } from '../../types/processTracker';
interface SystemMetricsProps {
    data: ProcessData | null;
    loading: boolean;
    error: string | null;
}
export default function SystemMetrics({ data, loading, error }: SystemMetricsProps): import("react/jsx-runtime").JSX.Element;
export {};
