import type { ApiErrorResponse } from '../../api';
interface MetricSummaryCardProps {
    title: string;
    format: string;
    value: number;
    previousValue: number;
    change: number;
    loading: boolean;
    isEmpty: boolean;
    error?: ApiErrorResponse;
    refresh: () => void;
}
declare const MetricSummaryCard: ({ title, format, value, previousValue, change, loading, isEmpty, error, refresh, }: MetricSummaryCardProps) => import("react/jsx-runtime").JSX.Element;
export default MetricSummaryCard;
